diff --git a/cypress.config.ts b/cypress.config.ts index 7a1cc92..31592a2 100644 --- a/cypress.config.ts +++ b/cypress.config.ts @@ -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); }, }, -}) +});