open-vault/ui/tests/pages/access/identity/show.js
Matthew Irish b383874a76
UI - Active Directory secrets (#4647)
* add AD secrets in the ui and move deprecated engines to the bottom of the list

* fix tools tests

* prettier
2018-05-29 09:14:31 -05:00

12 lines
533 B
JavaScript

import { create, clickable, collection, contains, visitable } from 'ember-cli-page-object';
import flashMessage from 'vault/tests/pages/components/flash-message';
import infoTableRow from 'vault/tests/pages/components/info-table-row';
export default create({
visit: visitable('/vault/access/identity/:item_type/:item_id'),
flashMessage,
nameContains: contains('[data-test-identity-item-name]'),
rows: collection('[data-test-component="info-table-row"]', infoTableRow),
edit: clickable('[data-test-entity-edit-link]'),
});