Skip to content

Commit d32ef2a

Browse files
committed
Fix for env vars
Signed-off-by: Ganesh Hubale <[email protected]>
1 parent ee0fed7 commit d32ef2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cypress.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ module.exports = defineConfig({
1212
},
1313
},
1414
env: {
15-
username: "",
16-
password: "",
15+
username: process.env.username,
16+
password: process.env.password,
1717
},
1818
viewportWidth: 1280,
1919
viewportHeight: 720,

0 commit comments

Comments
 (0)