Files
keycloak/js/apps/admin-ui/playwright.config.ts
Erik Jan de Wit 2c65234c8f longer retries to increase stability (#40378)
Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
2025-06-13 11:34:22 +00:00

40 lines
855 B
TypeScript

import { defineConfig, devices } from "@playwright/test";
const retryCount = parseInt(process.env.RETRY_COUNT || "0");
/**
* See https://playwright.dev/docs/test-configuration.
*/
export default defineConfig({
testDir: "./test",
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: retryCount,
workers: 1,
timeout: 60 * 1000,
reporter: process.env.CI ? [["github"], ["html"]] : "list",
use: {
baseURL: "http://localhost:8080",
trace: "on-first-retry",
},
/* Configure projects for major browsers */
projects: [
{
name: "chromium",
use: {
...devices["Desktop Chrome"],
viewport: { width: 1920, height: 1200 },
},
},
{
name: "firefox",
use: {
...devices["Desktop Firefox"],
viewport: { width: 1920, height: 1200 },
},
},
],
});