@piwitests/reporter 0.9.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -200,7 +200,7 @@ When `collectCiInfo` is enabled (default), the reporter auto-detects:
|
|
|
200
200
|
|
|
201
201
|
## Requirements
|
|
202
202
|
|
|
203
|
-
- Node.js 18 or higher
|
|
203
|
+
- Node.js 18 or higher (the reporter runs inside your test project — the dashboard *server* itself targets Node 24+, or use its Docker image)
|
|
204
204
|
- Playwright Test 1.40 or higher
|
|
205
205
|
- Running Piwi Dashboard server
|
|
206
206
|
|
|
@@ -217,9 +217,9 @@ npm run reporter:dev # watch mode — auto-recompile on changes
|
|
|
217
217
|
|
|
218
218
|
### Source layout
|
|
219
219
|
|
|
220
|
-
The package keeps its **public API** (`src/index.ts`, `src/
|
|
220
|
+
The package keeps its **public API** (`src/index.ts`, `src/public/`) separate from internal plumbing (`src/internal/<domain>/`) and the type model (`src/types/`). See [`ARCHITECTURE.md`](./ARCHITECTURE.md) for the full map — the public/internal split, the collect-and-submit data flow, the fallback ladder, and the conventions.
|
|
221
221
|
|
|
222
|
-
|
|
222
|
+
Everything public — the reporter, config helpers, and the capture fixtures — is exported from the package's single entry point (`@piwitests/reporter`).
|
|
223
223
|
|
|
224
224
|
## Troubleshooting
|
|
225
225
|
|
package/package.json
CHANGED