mirror of
https://github.com/status-im/consul.git
synced 2025-01-17 09:11:28 +00:00
7d89e519a2
UI to accompany the new ACLs APIs
18 lines
398 B
JavaScript
18 lines
398 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
moduleFor('route:dc/acls', 'Unit | Route | dc/acls', {
|
|
// Specify the other units that are required for this test.
|
|
needs: [
|
|
'service:tokens',
|
|
'service:feedback',
|
|
'service:logger',
|
|
'service:settings',
|
|
'service:flashMessages',
|
|
],
|
|
});
|
|
|
|
test('it exists', function(assert) {
|
|
let route = this.subject();
|
|
assert.ok(route);
|
|
});
|