docs: add Playwright E2E test commands to CLAUDE.md

This commit is contained in:
Johannes Millan 2025-07-30 22:14:24 +02:00
parent fee3b80f02
commit 69cb6d7e5a

View file

@ -51,6 +51,11 @@ npm run test:file <filepath>
- Unit tests: `npm test` - Uses Jasmine/Karma, tests are co-located with source files (`.spec.ts`)
- E2E tests: `npm run e2e` - Uses Nightwatch, located in `/e2e/src/`
- Playwright E2E tests: Located in `/e2e-playwright/`
- `npm run e2e:playwright` - Run all Playwright tests
- `npm run e2e:playwright:quick` - Run tests with minimal output (faster debugging)
- `npm run e2e:playwright:summary` - Show concise test summary after run
- `npm run e2e:playwright:failures` - Show only failing tests
- Linting: `npm run lint` - ESLint for TypeScript, Stylelint for SCSS
## Architecture Overview