mirror of
https://github.com/hashicorp/vault.git
synced 2025-09-11 17:01:15 +02:00
17 lines
507 B
JavaScript
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');
|
|
});
|
|
});
|