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