nxtgauge-frontend-solid/playwright.config.ts
Ashwin Kumar Sivakumar 53ec112b50 chore: Configure Playwright for test111.nxtgauge.com testing
- Add TEST_ENV environment variable support
- Use production URL when TEST_ENV=production
- Disable webServer when testing production
2026-07-06 22:03:06 +05:30

32 lines
No EOL
972 B
TypeScript

import { defineConfig, devices } from "@playwright/test";
export default defineConfig({
testDir: "./tests/e2e",
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 4 : undefined,
reporter: [["list"], ["html", { outputFolder: "./playwright-reports/html" }]],
use: {
baseURL: process.env.TEST_ENV === 'production' ? "https://test111.nxtgauge.com" : "http://localhost:3000",
trace: "on-first-retry",
screenshot: "only-on-failure",
video: "retain-on-failure",
},
projects: [
{
name: "chromium",
use: { ...devices["Desktop Chrome"] },
},
{
name: "chromium-mobile",
use: { ...devices["Pixel 5"] },
},
],
webServer: process.env.TEST_ENV === 'production' ? undefined : {
command: "npm run build && node .output/server/index.mjs",
url: "http://localhost:3000",
reuseExistingServer: !process.env.CI,
timeout: 180 * 1000,
},
});