Files
zitadel/apps/login/cypress/cypress.config.ts

14 lines
359 B
TypeScript
Raw Normal View History

import { defineConfig } from "cypress";
2023-06-20 14:01:49 +02:00
const watchApp = require("cypress-app-watcher-preprocessor");
export default defineConfig({
reporter: "list",
e2e: {
2023-06-15 22:42:13 +02:00
baseUrl: "http://localhost:3000",
specPattern: "cypress/integration/**/*.cy.{js,jsx,ts,tsx}",
setupNodeEvents(on, config) {
2023-06-20 14:01:49 +02:00
on("file:preprocessor", watchApp());
},
},
});