fix type conflicts

This commit is contained in:
Elio Bischof
2023-06-15 23:23:26 +02:00
parent 91e43465c7
commit ac2b2d9071
3 changed files with 14 additions and 9 deletions

View File

@@ -0,0 +1,12 @@
import { defineConfig } from "cypress";
export default defineConfig({
reporter: "list",
e2e: {
baseUrl: "http://localhost:3000",
specPattern: "cypress/integration/**/*.cy.{js,jsx,ts,tsx}",
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});