11 lines
290 B
JavaScript
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);
|
|
});
|