mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-05 14:30:32 -05:00
3d0a2b4061
* chore: disable video compression * system test updates * moar system test fixes * a couple of telemetry tweaks * more intelligent defaults, don't touch firefox. * trying this * probably finally fix firefox system tests * unformat plz * ugh, also add a test * plz stop formatting that file * re-enable firefox tests * Change log * don't save videos to artifacts * this will be fixed in another pr * quoth the raven, quotes matter don't mess them up
13 lines
278 B
TypeScript
13 lines
278 B
TypeScript
import { defineConfig } from 'cypress'
|
|
|
|
export default defineConfig({
|
|
videoCompression: false, // turn off video compression for CI
|
|
component: {
|
|
experimentalSingleTabRunMode: true,
|
|
devServer: {
|
|
bundler: 'webpack',
|
|
} as any,
|
|
supportFile: false,
|
|
},
|
|
})
|