mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-23 15:41:07 +02:00
* selector things and addressing flakiness in secret-test * replace and update the data test selectors for info-table-row * fix a selector * skip the replication test that borks it all, I have a follow up ticket and replication works still. * remove the uneeded data-test-div thing * missed one * fix replication selector * fix ci test failures * pull in clicktrigger * update transit test
14 lines
417 B
JavaScript
14 lines
417 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { create, visitable, text } from 'ember-cli-page-object';
|
|
import { GENERAL } from 'vault/tests/helpers/general-selectors';
|
|
|
|
export default create({
|
|
visit: visitable('/vault/secrets/:backend/configuration'),
|
|
defaultTTL: text(GENERAL.infoRowValue('Default Lease TTL')),
|
|
maxTTL: text(GENERAL.infoRowValue('Max Lease TTL')),
|
|
});
|