mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 15:11:07 +02:00
* rename page test to login form * add username/password tests to auth page test * add github and generalize tests * finish standard auth types for page test * add tests for onNamespaceInput * fix accessibility violation * add oidc provider qp test * move helper into test * move destructured arg * address oidc auth method flakiness...maybe? * cleanup unused fake window methods * add comment why... * fix diff * fix header * finish mfa acceptance tests move mfa selectors to folder
11 lines
254 B
TypeScript
11 lines
254 B
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
export const MFA_SELECTORS = {
|
|
mfaForm: '[data-test-mfa-form]',
|
|
passcode: (idx: number) => `[data-test-mfa-passcode="${idx}"]`,
|
|
validate: '[data-test-mfa-validate]',
|
|
};
|