@c9up/helix 0.1.6 → 0.1.7
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 +14 -1
- package/index.darwin-arm64.node +0 -0
- package/index.darwin-x64.node +0 -0
- package/index.linux-arm64-gnu.node +0 -0
- package/index.linux-x64-gnu.node +0 -0
- package/index.win32-x64-msvc.node +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,12 +14,25 @@ Vitest-compatible test runner CLI.
|
|
|
14
14
|
## CLI
|
|
15
15
|
|
|
16
16
|
```sh
|
|
17
|
-
helix test [paths...] # run a one-shot suite
|
|
17
|
+
helix test [paths...] # run a one-shot suite (e.g. `helix test app`)
|
|
18
18
|
helix test --watch # re-run on file changes
|
|
19
19
|
helix test --coverage # V8 coverage + LCOV + thresholds
|
|
20
20
|
helix test --diff-cov # diff coverage vs main branch
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
+
In `package.json`, call the `helix` bin directly — in npm scripts it resolves to
|
|
24
|
+
`node_modules/.bin/helix` and bootstraps the TS loader itself, so the verbose
|
|
25
|
+
`node --import tsx node_modules/@c9up/helix/bin/helix.js …` form is unnecessary:
|
|
26
|
+
|
|
27
|
+
```json
|
|
28
|
+
{
|
|
29
|
+
"scripts": {
|
|
30
|
+
"test": "helix test app --threads=1",
|
|
31
|
+
"test:coverage": "helix test app --threads=1 --coverage"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
```
|
|
35
|
+
|
|
23
36
|
## Self-testing (Stage 2a — coexistence)
|
|
24
37
|
|
|
25
38
|
Helix is currently tested by **two runners in parallel**:
|
package/index.darwin-arm64.node
CHANGED
|
Binary file
|
package/index.darwin-x64.node
CHANGED
|
Binary file
|
|
Binary file
|
package/index.linux-x64-gnu.node
CHANGED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c9up/helix",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Helix — framework-agnostic test runtime for the Ream ecosystem (Vitest-compatible runner, spies, container overrides, time-travel). Per-package fakes live in each package's /testing.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|