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 22918ed commit 38a32d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ user_data.sh
*.pem
.bsb.lock
package-lock.json
screenshots
5 changes: 2 additions & 3 deletions cypress.config.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
const { defineConfig } = require("cypress");
console.log(process.env);
module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
env: {
CYPRESS_USERNAME: process.env.CYPRESS_USERNAME,
CYPRESS_PASSWORD: process.env.CYPRESS_PASSWORD,
CYPRESS_USERNAME: process.env.CYPRESS_USERNAME || "",
CYPRESS_PASSWORD: process.env.CYPRESS_PASSWORD || "",
},
});

0 comments on commit 38a32d5

Please sign in to comment.