consul/ui-v2/tests/unit/utils/acls-status-test.js
John Cowen 7d89e519a2 UI: New ACLs (#4789)
UI to accompany the new ACLs APIs
2018-10-19 08:45:05 -07:00

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