Skip to content

Commit

Permalink
fix: cypress video (#10829)
Browse files Browse the repository at this point in the history
Fixes #10828

Cypress v13 had breaking changes where the default value for video and videoCompression changed from true to false.
This re-adds video using the cypress config as mentioned in the migration [docs](https://docs.cypress.io/app/references/migration-guide#Migrating-to-Cypress-130)
  • Loading branch information
jNullj authored Jan 18, 2025
1 parent 4a75cf0 commit 2c089f7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ export default defineConfig({
baseUrl: 'http://localhost:3000',
supportFile: false,
},
video: true,
videoCompression: true,
})

0 comments on commit 2c089f7

Please sign in to comment.