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