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