mirror of
https://github.com/badges/shields.git
synced 2025-04-18 19:44:04 +03:00
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)
16 lines
307 B
JavaScript
16 lines
307 B
JavaScript
import { defineConfig } from 'cypress'
|
|
|
|
export default defineConfig({
|
|
fixturesFolder: false,
|
|
env: {
|
|
backend_url: 'http://localhost:8080',
|
|
},
|
|
e2e: {
|
|
setupNodeEvents(on, config) {},
|
|
baseUrl: 'http://localhost:3000',
|
|
supportFile: false,
|
|
},
|
|
video: true,
|
|
videoCompression: true,
|
|
})
|