9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
baseUrl: "http://localhost:5173",
|
|
supportFile: false,
|
|
specPattern: "cypress/e2e/**/*.cy.{js,jsx,ts,tsx}"
|
|
},
|
|
});
|