mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 12:07:02 +02:00
* fix order of arguments for path-service * add tests for ssh OTP role CRUD and OTP generation
12 lines
419 B
JavaScript
12 lines
419 B
JavaScript
import { Base } from '../show';
|
|
import { create, clickable, collection, isPresent } from 'ember-cli-page-object';
|
|
|
|
export default create({
|
|
...Base,
|
|
rows: collection('data-test-row-label'),
|
|
edit: clickable('[data-test-edit-link]'),
|
|
editIsPresent: isPresent('[data-test-edit-link]'),
|
|
generate: clickable('[data-test-backend-credentials]'),
|
|
generateIsPresent: isPresent('[data-test-backend-credentials]'),
|
|
});
|