mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-20 06:01:10 +02:00
* add show page for generated CSR * fix typo, make key-id copyable * add tests * move pki tests to designated folder * list keys when in between state after CSR generation * update tests
16 lines
520 B
JavaScript
16 lines
520 B
JavaScript
import { SELECTORS as GENERATE_ROOT } from './pki-generate-root';
|
|
|
|
export const SELECTORS = {
|
|
// pki-configure-form
|
|
option: '[data-test-pki-config-option]',
|
|
optionByKey: (key) => `[data-test-pki-config-option="${key}"]`,
|
|
cancelButton: '[data-test-pki-config-cancel]',
|
|
saveButton: '[data-test-pki-config-save]',
|
|
// pki-generate-root
|
|
...GENERATE_ROOT,
|
|
// pki-ca-cert-import
|
|
importForm: '[data-test-pki-ca-cert-import-form]',
|
|
// generate-intermediate
|
|
csrDetails: '[data-test-generate-csr-result]',
|
|
};
|