Skip to content

Commit

Permalink
fix: cypress video
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 committed Jan 17, 2025
1 parent 71f553e commit 3484a5d
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 3484a5d

Please sign in to comment.