lemo-crm/web/tests/unit/helpers/array-test.js
Shaun Chyxion 528e09dbdd init
2017-06-04 22:56:26 +08:00

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);
});