consul/ui-v2/tests/unit/routes/dc/acls-test.js
John Cowen de6644675d
ui: Brings the new ACLs into line with the new repo folder structure (#4857)
This PR updates the folder structure and naming of the new ACLs, the same as #4694 .
2018-10-26 18:40:51 +01:00

18 lines
408 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:repository/token',
'service:feedback',
'service:logger',
'service:settings',
'service:flashMessages',
],
});
test('it exists', function(assert) {
let route = this.subject();
assert.ok(route);
});