End-to-end tests for LiveDebugger using Playwright.
mix e2e.setupmix e2e
# Or via `npx` in the `e2e/` folder:
npx playwright test --ui
npx playwright test --quiet --retries 2Reports land in e2e/playwright-report/ — open with npx playwright show-report.
global-setup.ts runs once before the suite. It opens the dev app + debugger and verifies the TracingManager initializes asynchronously after boot.
- Use
*.serial.spec.tsnaming when a test mutates global state (settings, tracer config) that other tests would race on. - Prefer
getByRole,getByText,locatorover CSS selectors when possible.