mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 14:24:39 +00:00
7d89e519a2
UI to accompany the new ACLs APIs
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);
|
|
});
|