vault/ui/tests/pages/settings/auth/configure/section.js
Matthew Irish 3c6bec9113
UI - auth method edit (#4770)
* add configuration tab for ldap, okta, radius auth methods
* add tests to assert that configuration tabs show on supported auth methods
2018-06-15 12:53:21 -05:00

12 lines
429 B
JavaScript

import { create, clickable, visitable, collection } from 'ember-cli-page-object';
import fields from '../../../components/form-field';
import flashMessage from '../../../components/flash-message';
export default create({
...fields,
tabs: collection('[data-test-auth-section-tab]'),
visit: visitable('/vault/settings/auth/configure/:path/:section'),
flash: flashMessage,
save: clickable('[data-test-save-config]'),
});