Skip to content

Commit 2e57ebf

Browse files
committed
feat: upgrade Cypress to v10.11.0
1 parent 30b578a commit 2e57ebf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+51
-24
lines changed

cypress.config.ts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import {defineConfig} from 'cypress'
2+
3+
export default defineConfig({
4+
retries: {
5+
runMode: 2,
6+
openMode: 0,
7+
},
8+
numTestsKeptInMemory: 25,
9+
defaultCommandTimeout: 10000,
10+
videoUploadOnPasses: false,
11+
chromeWebSecurity: false,
12+
blockHosts: [
13+
'www.google-analytics.com',
14+
'www.googletagmanager.com',
15+
'www.honeybadger.io',
16+
],
17+
viewportWidth: 1400,
18+
viewportHeight: 1000,
19+
e2e: {
20+
// We've imported your old cypress plugins here.
21+
// You may want to clean this up later by importing these.
22+
setupNodeEvents(on, config) {
23+
return require('./cypress/plugins/index.js')(on, config)
24+
},
25+
specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}',
26+
},
27+
})
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)