Files
breakpilot-compliance/admin-compliance/e2e/playwright-live.config.ts
T
Benjamin Admin d880c9d098 test: E2E tests — 47/49 passing against live instance
Results (https://macmini:3007):
- sdk-module-reachability: 40/42 (loeschfristen+vvt pre-existing bugs)
- vendor-transfers: 4/4
- isms-assets: 3/3
- document-generator: 3/4 (category label mismatch)

Added: playwright-live.config.ts (no webServer, live instance testing)
Test data NOT cleaned up — profiles persist for manual review.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-05-01 19:34:37 +02:00

33 lines
850 B
TypeScript

/**
* Playwright config for testing against live Mac Mini instance.
* No webServer — assumes https://macmini:3007 is already running.
*
* Usage: npx playwright test --config=e2e/playwright-live.config.ts
*/
import { defineConfig, devices } from '@playwright/test'
export default defineConfig({
testDir: './specs',
fullyParallel: true,
retries: 0,
workers: 3,
reporter: [
['html', { outputFolder: 'e2e/reports/html' }],
['list'],
],
use: {
baseURL: process.env.PLAYWRIGHT_BASE_URL || 'https://macmini:3007',
ignoreHTTPSErrors: true,
screenshot: 'on',
trace: 'on-first-retry',
},
projects: [
{ name: 'chromium', use: { ...devices['Desktop Chrome'] } },
],
outputDir: 'e2e/test-results',
timeout: 20000,
expect: { timeout: 5000 },
// No webServer — we test against the live instance
})