Skip to content

Commit

Permalink
Merge branch 'testing/cypress-e2e' of https://github.com/ESIPFed/Geow…
Browse files Browse the repository at this point in the history
…eaver into testing/cypress-e2e
  • Loading branch information
meghanakr7 committed May 15, 2024
2 parents 4f4d8d0 + d3c792e commit bd2573f
Show file tree
Hide file tree
Showing 8 changed files with 2,510 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
/install/
*.class


/gitcypress/node_modules/
**/.DS_Store

**/build/classes/**/*.class
Expand All @@ -18,4 +20,5 @@ sync.ffs_db
.vscode/launch.json

cypress/node_modules/
node_modules/

24 changes: 24 additions & 0 deletions cypress.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
const { defineConfig } = require('cypress')
const os = require('os');
module.exports = defineConfig({
projectId: 'u864mu',
env: {
codeCoverage: {
url: 'http://localhost:3000/__coverage__'
},
home: os.homedir(),
},
e2e: {
experimentalStudio: true,
setupNodeEvents(on, config) {
on('task', {
log(message) {
// Then to see the log messages in the terminal
// cy.task("log", "my message");
console.log(message +'\n\n');
return null;
},
});}
}

})
Loading

0 comments on commit bd2573f

Please sign in to comment.