2018-04-03 09:16:57 -05:00

17 lines
507 B
JavaScript

import { test } from 'qunit';
import moduleForAcceptance from 'vault/tests/helpers/module-for-acceptance';
import page from 'vault/tests/pages/access/identity/index';
moduleForAcceptance('Acceptance | /access/identity/entities', {
beforeEach() {
return authLogin();
},
});
test('it renders the page', function(assert) {
page.visit({ item_type: 'entities' });
andThen(() => {
assert.ok(currentRouteName(), 'vault.cluster.access.identity.index', 'navigates to the correct route');
});
});