24 lines
440 B
Markdown
24 lines
440 B
Markdown
# Testing Runbook
|
|
|
|
## Install
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
## Execute Tests
|
|
|
|
```bash
|
|
npm run test:ci
|
|
```
|
|
|
|
## Coverage Scope
|
|
|
|
- `src/api/client.test.ts`: runtime-config precedence and fallback behavior.
|
|
- `src/api/dashboardApi.test.ts`: endpoint path/query composition and payload mapping.
|
|
- `src/App.test.tsx`: protected-route render and workflow trigger behavior.
|
|
|
|
## Notes
|
|
|
|
- Use containerized Node execution when host `npm` is unavailable.
|