keycloak-scim/js/apps/admin-ui/cypress.config.mjs
2023-08-30 11:03:27 +02:00

21 lines
441 B
JavaScript

import { defineConfig } from "cypress";
export default defineConfig({
projectId: "j4yhox",
chromeWebSecurity: false,
viewportWidth: 1360,
viewportHeight: 768,
defaultCommandTimeout: 30000,
numTestsKeptInMemory: 30,
experimentalMemoryManagement: true,
retries: {
runMode: 3,
},
e2e: {
baseUrl: "http://localhost:8080",
slowTestThreshold: 30000,
specPattern: "cypress/e2e/**/*.{js,jsx,ts,tsx}",
},
});