We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3786b3d commit 8650cc9Copy full SHA for 8650cc9
cypress.config.ts
@@ -1,11 +1,12 @@
1
-import { defineConfig } from 'cypress'
+import { defineConfig } from 'cypress';
2
3
export default defineConfig({
4
e2e: {
5
// We've imported your old cypress plugins here.
6
// You may want to clean this up later by importing these.
7
setupNodeEvents(on, config) {
8
- return require('./cypress/plugins/index.js')(on, config)
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
9
+ return require('./cypress/plugins/index.js')(on, config);
10
},
11
-})
12
+});
0 commit comments