vault/ui/tests/helpers/tools-selectors.ts
Angel Garbarino 5787fa20f6
Prep for SSH and AWS configuration changes (#27869)
* move non user facing changes to another pr

* remove non-relevant test coverage

* address pr fixes

* Update mountable-secret-engines.js

* Update secrets-engine-mount-config.ts

* clean up

* put back console because of tests and use debug instead

* missed one

* blah fix
2024-07-26 10:47:33 -06:00

11 lines
286 B
TypeScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
export const TOOLS_SELECTORS = {
submit: '[data-test-tools-submit]',
toolsInput: (attr: string) => `[data-test-tools-input="${attr}"]`,
button: (action: string) => `[data-test-button="${action}"]`,
};