Make auth/tasks/shifts end-to-end tests deterministic with robust role-aware fallbacks, single-worker execution, and non-brittle selectors aligned to the current UI contracts. Mark verified plan/evidence checklists complete after re-validating backend, frontend, E2E, security isolation, and infrastructure commands.
31 lines
625 B
TypeScript
31 lines
625 B
TypeScript
import { defineConfig, devices } from '@playwright/test';
|
|
|
|
export default defineConfig({
|
|
testDir: './e2e',
|
|
fullyParallel: false,
|
|
forbidOnly: !!process.env.CI,
|
|
retries: process.env.CI ? 2 : 0,
|
|
workers: 1,
|
|
reporter: 'html',
|
|
timeout: 60000,
|
|
use: {
|
|
baseURL: 'http://localhost:3000',
|
|
screenshot: 'only-on-failure',
|
|
trace: 'on-first-retry',
|
|
navigationTimeout: 30000,
|
|
},
|
|
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: { ...devices['Desktop Chrome'] },
|
|
},
|
|
],
|
|
|
|
webServer: {
|
|
command: 'bun dev',
|
|
url: 'http://localhost:3000',
|
|
reuseExistingServer: !process.env.CI,
|
|
},
|
|
});
|