Skip to content

Commit

Permalink
fix eslint error in cypress config
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-koehler committed Jun 11, 2024
1 parent 3786b3d commit 8650cc9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cypress.config.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { defineConfig } from 'cypress'
import { defineConfig } from 'cypress';

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

0 comments on commit 8650cc9

Please sign in to comment.