We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d75bc81 commit 2022ba8Copy full SHA for 2022ba8
e2e/base.ts
@@ -27,7 +27,7 @@ export const getSecretValue = async (
27
async function getSecrets() {
28
let response = { PLAYWRIGHT_USERNAME: '', PLAYWRIGHT_PASSWORD: '' }
29
let keyData;
30
- if (!process.env.PLAYWRIGHT_USERNAME || !process.env.PLAYWRIGHT_PASSWORD || !process.env.JwtSigningKey) {
+ if (!process.env.PLAYWRIGHT_USERNAME || !process.env.PLAYWRIGHT_PASSWORD) {
31
keyData = await getSecretValue('infra-core-api-config')
32
}
33
response['PLAYWRIGHT_USERNAME'] = process.env.PLAYWRIGHT_USERNAME || keyData ? keyData['playwright_username'] : '';
0 commit comments