Problem
Playwright is configured in playwright.config.js and listed as a dev dependency, but the tests/ directory does not exist and there are zero test files in the project. There is no coverage for any API endpoint, UI flow, or error scenario.
Recommendation
Create a tests/ directory with at minimum:
- A happy-path CRUD test (create, read, update, delete a task)
- A form validation test (submit without a title)
- A negative test (e.g., updating a non-existent task returns 404)
Location: tests/ directory — missing entirely
Severity: high
Problem
Playwright is configured in
playwright.config.jsand listed as a dev dependency, but thetests/directory does not exist and there are zero test files in the project. There is no coverage for any API endpoint, UI flow, or error scenario.Recommendation
Create a
tests/directory with at minimum:Location:
tests/directory — missing entirelySeverity: high