mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 18:32:20 +00:00
13 lines
307 B
TypeScript
13 lines
307 B
TypeScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
reporter: "list",
|
|
e2e: {
|
|
baseUrl: "http://localhost:3000/loginname",
|
|
specPattern: "cypress/integration/**/*.cy.{js,jsx,ts,tsx}",
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
},
|
|
});
|