Updated today at 08:58
Commit: 9e8c342 Show on GitHub
- Author: Alex
- Date: 2/19/2026, 1:28:07 PM
- Message: test: set up Vitest and Playwright infrastructure. - Add Vitest for unit/integration tests (src/**/*.test.js) - Add Playwright for E2E tests (e2e/**/*.spec.js) - Configure Vitest to exclude e2e/ folder and pass with no tests - Configure Playwright with list reporter and dev server - Add placeholder unit test as baseline - Add test-results/ and playwright-report/ to .gitignore - Add test scripts to package.json (test, test:unit, test:e2e, test:watch) Issue #327
- Stats: 1347 total changes (+1317 / -30)
Changed Files
.gitignore— +5 / -1 (6 changes)e2e/home.spec.js— +11 / -0 (11 changes)package-lock.json— +1263 / -26 (1289 changes)package.json— +13 / -3 (16 changes)playwright.config.js— +13 / -0 (13 changes)vitest.config.js— +12 / -0 (12 changes)