import { arrayIndex } from 'app-client/helpers/array-index';
import { module, test } from 'qunit';
module('Unit | Helper | array index');
// Replace this with your real tests.
test('it works', function(assert) {
let result = arrayIndex([42]);
assert.ok(result);
});