Skip to content

Commit

Permalink
created default Cypress project; modified .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
leobooth committed Jul 15, 2024
1 parent 22174c4 commit 1e9c0a6
Show file tree
Hide file tree
Showing 4 changed files with 1,817 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*

node_modules/
cypress/
9 changes: 9 additions & 0 deletions cypress.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const { defineConfig } = require("cypress");

module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});
Loading

0 comments on commit 1e9c0a6

Please sign in to comment.