Skip to content

Commit c9d628b

Browse files
fix: correct environment variable names for Cypress user credentials
1 parent 657adb1 commit c9d628b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cypress/e2e/smoke.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
const EMAIL = Cypress.env('USER_EMAIL');
2-
const PASSWORD = Cypress.env('USER_PASSWORD');
1+
const EMAIL = Cypress.env('CYPRESS_USER_EMAIL');
2+
const PASSWORD = Cypress.env('CYPRESS_USER_PASSWORD');
33

44
if (!EMAIL || !PASSWORD) {
55
throw new Error(

0 commit comments

Comments
 (0)