|
258
|
1 |
import { arrayIndex } from 'app-client/helpers/array-index'; |
|
|
2 |
import { module, test } from 'qunit'; |
|
|
3 |
|
|
|
4 |
module('Unit | Helper | array index'); |
|
|
5 |
|
|
|
6 |
// Replace this with your real tests. |
|
|
7 |
test('it works', function(assert) { |
|
|
8 |
let result = arrayIndex([42]); |
|
|
9 |
assert.ok(result); |
|
|
10 |
}); |