mirror of https://github.com/status-im/consul.git
11 lines
262 B
JavaScript
11 lines
262 B
JavaScript
|
import aclsStatus from 'consul-ui/utils/acls-status';
|
||
|
import { module, test } from 'qunit';
|
||
|
|
||
|
module('Unit | Utility | acls status');
|
||
|
|
||
|
// Replace this with your real tests.
|
||
|
test('it works', function(assert) {
|
||
|
let result = aclsStatus();
|
||
|
assert.ok(result);
|
||
|
});
|