You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/ui-v2/tests/unit/utils/non-empty-set-test.js

11 lines
291 B

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);
});
});