import { defineConfig, devices } from '@playwright/test'; /** * Playwright Configuration for ThrillWiki E2E Tests * * See https://playwright.dev/docs/test-configuration. */ export default defineConfig({ testDir: './tests', /* Run tests in files in parallel */ fullyParallel: true, /* Fail the build on CI if you accidentally left test.only in the source code. */ forbidOnly: !!process.env.CI, /* Retry on CI only */ retries: process.env.CI ? 2 : 0, /* Opt out of parallel tests on CI. */ workers: process.env.CI ? 1 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: [ ['html'], ['list'], ['json', { outputFile: 'test-results.json' }], // Only include Loki reporter if Grafana Cloud credentials are configured ...(process.env.GRAFANA_LOKI_URL && process.env.GRAFANA_LOKI_USERNAME && process.env.GRAFANA_LOKI_PASSWORD ? [['./tests/helpers/loki-reporter.ts', { lokiUrl: process.env.GRAFANA_LOKI_URL, username: process.env.GRAFANA_LOKI_USERNAME, password: process.env.GRAFANA_LOKI_PASSWORD, }] as ['./tests/helpers/loki-reporter.ts', any]] : [] ) ], /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Base URL to use in actions like `await page.goto('/')`. */ baseURL: process.env.BASE_URL || 'http://localhost:8080', /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ trace: 'on-first-retry', /* Screenshot on failure */ screenshot: 'only-on-failure', /* Video on failure */ video: 'retain-on-failure', /* Maximum time each action such as `click()` can take */ actionTimeout: 10000, }, /* Global timeout for each test */ timeout: 60000, /* Global setup and teardown */ globalSetup: './tests/setup/global-setup.ts', globalTeardown: './tests/setup/global-teardown.ts', /* Configure projects for major browsers */ projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'], // Use authenticated state for most tests storageState: '.auth/user.json', }, }, { name: 'firefox', use: { ...devices['Desktop Firefox'], storageState: '.auth/user.json', }, }, { name: 'webkit', use: { ...devices['Desktop Safari'], storageState: '.auth/user.json', }, }, /* Test against mobile viewports. */ { name: 'Mobile Chrome', use: { ...devices['Pixel 5'], storageState: '.auth/user.json', }, }, { name: 'Mobile Safari', use: { ...devices['iPhone 12'], storageState: '.auth/user.json', }, }, /* Tests that require specific user roles */ { name: 'moderator', use: { ...devices['Desktop Chrome'], storageState: '.auth/moderator.json', }, }, { name: 'admin', use: { ...devices['Desktop Chrome'], storageState: '.auth/admin.json', }, }, /* Authentication tests run without pre-authenticated state */ { name: 'auth-tests', testMatch: '**/auth/**/*.spec.ts', use: { ...devices['Desktop Chrome'], // No storageState for auth tests }, }, ], /* Run your local dev server before starting the tests */ webServer: { command: 'npm run dev', url: 'http://localhost:8080', reuseExistingServer: !process.env.CI, timeout: 120000, }, });