Skip to content

Commit 8650cc9

Browse files
committed
fix eslint error in cypress config
1 parent 3786b3d commit 8650cc9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

cypress.config.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
import { defineConfig } from 'cypress'
1+
import { defineConfig } from 'cypress';
22

33
export default defineConfig({
44
e2e: {
55
// We've imported your old cypress plugins here.
66
// You may want to clean this up later by importing these.
77
setupNodeEvents(on, config) {
8-
return require('./cypress/plugins/index.js')(on, config)
8+
// eslint-disable-next-line @typescript-eslint/no-var-requires
9+
return require('./cypress/plugins/index.js')(on, config);
910
},
1011
},
11-
})
12+
});

0 commit comments

Comments
 (0)