Skip to content

Commit

Permalink
Merge pull request #426 from oo-bldrs/disable-cypress-videos
Browse files Browse the repository at this point in the history
Disable recording of screenshots and videos
  • Loading branch information
oo-bldrs committed Oct 8, 2022
2 parents 2721af5 + 61a8e77 commit f2c0189
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@
.DS_Store
.vscode
*.log

cypress/videos
cypress/screenshots
7 changes: 5 additions & 2 deletions cypress.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
const { defineConfig } = require("cypress");
const {defineConfig} = require('cypress')


module.exports = defineConfig({
e2e: {
fileServerFolder: 'docs/',
setupNodeEvents(on, config) {
// implement node event listeners here
},
screenshotOnRunFailure: false,
video: false,
},
});
})

0 comments on commit f2c0189

Please sign in to comment.