1
0
mirror of https://github.com/badges/shields.git synced 2025-04-18 19:44:04 +03:00

fix: cypress video (#10829)

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)
This commit is contained in:
jNullj 2025-01-18 20:09:38 +02:00 committed by GitHub
parent 4a75cf09a7
commit 2c089f7ba6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,4 +10,6 @@ export default defineConfig({
baseUrl: 'http://localhost:3000',
supportFile: false,
},
video: true,
videoCompression: true,
})