You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
417 B
TypeScript
15 lines
417 B
TypeScript
1 year ago
|
import { defineConfig } from "cypress";
|
||
|
|
||
|
export default defineConfig({
|
||
|
e2e: {
|
||
|
supportFile: "tests/e2e/support/e2e.{js,jsx,ts,tsx}",
|
||
|
specPattern: "tests/e2e/specs/**/*.cy.{js,jsx,ts,tsx}",
|
||
|
videosFolder: "tests/e2e/videos",
|
||
|
screenshotsFolder: "tests/e2e/screenshots",
|
||
|
baseUrl: "http://localhost:5173",
|
||
|
setupNodeEvents(on, config) {
|
||
|
// implement node event listeners here
|
||
|
},
|
||
|
},
|
||
|
});
|