mirror of https://github.com/status-im/consul.git
16 lines
372 B
JavaScript
16 lines
372 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
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);
|
|
});
|
|
});
|