delete all e2e tests (#22501)

This commit is contained in:
Luke Parker 2026-04-15 09:41:53 +10:00 committed by GitHub
commit ea463e604c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
83 changed files with 29 additions and 8881 deletions

View file

@ -31,11 +31,10 @@ Your app is ready to be deployed!
## E2E Testing
Playwright starts the Vite dev server automatically via `webServer`, and UI tests need an opencode backend (defaults to `localhost:4096`).
Use the local runner to create a temp sandbox, seed data, and run the tests.
Playwright starts the Vite dev server automatically via `webServer`, and UI tests expect an opencode backend at `localhost:4096` by default.
```bash
bunx playwright install
bunx playwright install chromium
bun run test:e2e:local
bun run test:e2e:local -- --grep "settings"
```