mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 15:11:07 +02:00
* update selectors * add tests * add tests * add explanations to true only args * allow token wrap to wrap again * update test wording * add wrap specific modules to tools acceptance test * add changelog * remove selectedAction * trim args and update tests
12 lines
340 B
TypeScript
12 lines
340 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}"]`,
|
|
tab: (item: string) => `[data-test-tab="${item}"]`,
|
|
button: (action: string) => `[data-test-button="${action}"]`,
|
|
};
|