11 lines
262 B
JavaScript
11 lines
262 B
JavaScript
|
import qsaFactory from 'consul-ui/utils/qsa-factory';
|
||
|
import { module, test } from 'qunit';
|
||
|
|
||
|
module('Unit | Utility | qsa factory');
|
||
|
|
||
|
// Replace this with your real tests.
|
||
|
test('it works', function(assert) {
|
||
|
let result = qsaFactory();
|
||
|
assert.ok(result);
|
||
|
});
|