mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-24 06:58:10 -05:00
17 lines
316 B
TypeScript
17 lines
316 B
TypeScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
fixturesFolder: false,
|
|
e2e: {
|
|
// setupNodeEvents(on, config) {},
|
|
baseUrl: "http://localhost:4455",
|
|
},
|
|
video: false,
|
|
screenshotOnRunFailure: false,
|
|
responseTimeout: 5000,
|
|
retries: {
|
|
openMode: 0,
|
|
runMode: 2,
|
|
},
|
|
});
|