Add full test suite with unit, integration, and E2E smoke tests.
Introduce test.bat orchestrating Go/Vitest/Playwright phases, expand coverage across server, agent, and dashboard, and document in tests/README.md.
This commit is contained in:
12
PROBLEMS.md
12
PROBLEMS.md
@@ -2,7 +2,7 @@
|
||||
|
||||
Findings grouped by severity. Updated after full bug-hunt pass (May 2026).
|
||||
|
||||
**Last verified:** `go test ./...` in `server/` and `agent/`, `npm test && npm run build` in `server/web/`.
|
||||
**Last verified:** run `test.bat` from project root (all phases) or see [tests/README.md](tests/README.md).
|
||||
|
||||
---
|
||||
|
||||
@@ -123,6 +123,14 @@ Findings grouped by severity. Updated after full bug-hunt pass (May 2026).
|
||||
|
||||
## Verification
|
||||
|
||||
Run the full suite:
|
||||
|
||||
```bat
|
||||
test.bat
|
||||
```
|
||||
|
||||
Or manually:
|
||||
|
||||
```bat
|
||||
cd server && go test ./... && go build .
|
||||
cd ..\agent && go test ./... && go build .
|
||||
@@ -130,6 +138,8 @@ cd ..\server\web && npm test && npm run build
|
||||
run.bat
|
||||
```
|
||||
|
||||
See **[tests/README.md](tests/README.md)** for phase breakdown and E2E options.
|
||||
|
||||
---
|
||||
|
||||
## Priority for next pass
|
||||
|
||||
Reference in New Issue
Block a user