Skip to content

Commit

Permalink
chore: refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
JeevaRamu0104 committed Jan 18, 2024
1 parent ef67c8c commit cdee96c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cypress.config.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
const { defineConfig } = require("cypress");

console.log(process.env);
module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
env: {
CYPRESS_USERNAME: "",
CYPRESS_PASSWORD: "",
CYPRESS_USERNAME: process.env.CYPRESS_USERNAME,
CYPRESS_PASSWORD: process.env.CYPRESS_PASSWORD,
},
});

0 comments on commit cdee96c

Please sign in to comment.