keycloak-scim/js/apps/admin-ui/cypress.config.mjs

22 lines
441 B
JavaScript
Raw Normal View History

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