799c7e6936
Co-authored-by: Denys Konovalov <kontakt@denyskon.de> Co-authored-by: Mathieu COSYNS <64072917+Mathieu-COSYNS@users.noreply.github.com>
20 lines
475 B
TypeScript
20 lines
475 B
TypeScript
import { defineConfig } from "cypress";
|
|
import setupNodeEvents from "./cypress/plugins";
|
|
|
|
export default defineConfig({
|
|
projectId: "wvw3x3",
|
|
retries: {
|
|
runMode: 2,
|
|
openMode: 0,
|
|
},
|
|
chromeWebSecurity: false,
|
|
e2e: {
|
|
video: false,
|
|
// We've imported your old cypress plugins here.
|
|
// You may want to clean this up later by importing these.
|
|
setupNodeEvents,
|
|
baseUrl: "http://localhost:8080",
|
|
specPattern: "cypress/e2e/*.spec.ts",
|
|
},
|
|
});
|