11 lines
250 B
JavaScript
11 lines
250 B
JavaScript
import { array } from 'umsapp-ota/helpers/array';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('Unit | Helper | array');
|
|
|
|
// Replace this with your real tests.
|
|
test('it works', function(assert) {
|
|
let result = array([42]);
|
|
assert.ok(result);
|
|
});
|