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

11 lines
290 B
JavaScript

import { objQueryParams } from 'umsapp-ota/helpers/obj-query-params';
import { module, test } from 'qunit';
module('Unit | Helper | obj query params');
// Replace this with your real tests.
test('it works', function(assert) {
let result = objQueryParams([42]);
assert.ok(result);
});