mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-25 08:29:06 -06:00
* chore: update darwin v8 snapshot * BREAKING CHANGE: set video to false by default (system tests need updating). * Update cli/CHANGELOG.md Co-authored-by: Emily Rohrbough <emilyrohrbough@users.noreply.github.com> * chore: update type comments * chore: update protocol snapshot * run ci * run ci * set video to true for chrome browser crash test * chore: put in workaround for failing system test spec to be fixed in 27062 * chore: allow retries on actionability tests to be at least one retry as the CI tests run faster without video on * chore: fix flaky navigation test where done is called multiple times almsot always, but sometimes throws an error --------- Co-authored-by: Emily Rohrbough <emilyrohrbough@users.noreply.github.com>
22 lines
430 B
JavaScript
22 lines
430 B
JavaScript
module.exports = {
|
|
'viewportWidth': 400,
|
|
'viewportHeight': 400,
|
|
'projectId': 'z9dxah',
|
|
'env': {
|
|
'reactDevtools': true,
|
|
},
|
|
'experimentalFetchPolyfill': true,
|
|
'component': {
|
|
experimentalSingleTabRunMode: true,
|
|
'excludeSpecPattern': [
|
|
'**/__snapshots__/*',
|
|
'**/__image_snapshots__/*',
|
|
'examples/**/*',
|
|
],
|
|
devServer: {
|
|
framework: 'react',
|
|
bundler: 'vite',
|
|
},
|
|
},
|
|
}
|