Files
zitadel/apps/login/cypress.config.ts
Elio Bischof 4c946fa564 Revert "remove integration tests"
This reverts commit 9f8a24ad7c.
2023-06-08 07:20:30 +02:00

13 lines
297 B
TypeScript

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
},
},
});