Files
falah-mobile/playwright.config.ts
T

22 lines
505 B
TypeScript
Raw Normal View History

2026-07-02 20:01:48 +08:00
import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
testDir: './e2e',
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: 2,
workers: process.env.CI ? 1 : undefined,
reporter: 'html',
use: {
baseURL: 'https://6a4e31799ae1822127aa87de--mobile2-staging-falah.netlify.app',
2026-07-02 20:01:48 +08:00
trace: 'on-first-retry',
video: 'retain-on-failure',
},
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
},
],
});