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

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