mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 12:37:02 +02:00
* 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
11 lines
286 B
TypeScript
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}"]`,
|
|
};
|