@c9up/helix 0.2.3 → 0.2.5

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.
Files changed (84) hide show
  1. package/README.md +25 -111
  2. package/bin/helix.js +24 -41
  3. package/dist/cli/failed-cache.d.ts +2 -2
  4. package/dist/cli/failed-cache.js +2 -2
  5. package/dist/cli/pool.d.ts +3 -3
  6. package/dist/cli/reporter.d.ts +1 -1
  7. package/dist/cli/reporter.js +2 -2
  8. package/dist/cli/run.d.ts +5 -5
  9. package/dist/cli/run.js +4 -4
  10. package/dist/cli/run.js.map +1 -1
  11. package/dist/cli/runner.d.ts +1 -1
  12. package/dist/cli/runner.js +1 -1
  13. package/dist/cli/suites.d.ts +4 -4
  14. package/dist/cli/suites.d.ts.map +1 -1
  15. package/dist/cli/suites.js +4 -4
  16. package/dist/cli/suites.js.map +1 -1
  17. package/dist/index.d.ts +1 -1
  18. package/dist/index.js +1 -1
  19. package/dist/native/generated.d.ts +2 -2
  20. package/dist/native/generated.d.ts.map +1 -1
  21. package/dist/runtime/assert.d.ts +18 -18
  22. package/dist/runtime/assert.d.ts.map +1 -1
  23. package/dist/runtime/assert.js +3 -3
  24. package/dist/runtime/assert.js.map +1 -1
  25. package/dist/runtime/bootstrap.d.ts +2 -2
  26. package/dist/runtime/bootstrap.js +3 -3
  27. package/dist/runtime/bootstrap.js.map +1 -1
  28. package/dist/runtime/cli-args.d.ts +6 -6
  29. package/dist/runtime/cli-args.d.ts.map +1 -1
  30. package/dist/runtime/cli-args.js +5 -5
  31. package/dist/runtime/cli-args.js.map +1 -1
  32. package/dist/runtime/cli-worker.js +3 -0
  33. package/dist/runtime/cli-worker.js.map +1 -1
  34. package/dist/runtime/configure.d.ts +43 -43
  35. package/dist/runtime/configure.d.ts.map +1 -1
  36. package/dist/runtime/configure.js +11 -11
  37. package/dist/runtime/configure.js.map +1 -1
  38. package/dist/runtime/context.d.ts +9 -9
  39. package/dist/runtime/context.d.ts.map +1 -1
  40. package/dist/runtime/context.js +10 -10
  41. package/dist/runtime/context.js.map +1 -1
  42. package/dist/runtime/emitter.d.ts +13 -13
  43. package/dist/runtime/emitter.d.ts.map +1 -1
  44. package/dist/runtime/emitter.js +6 -6
  45. package/dist/runtime/expect.d.ts.map +1 -1
  46. package/dist/runtime/expect.js +2 -2
  47. package/dist/runtime/expect.js.map +1 -1
  48. package/dist/runtime/global-hooks.d.ts +1 -1
  49. package/dist/runtime/global-hooks.js +1 -1
  50. package/dist/runtime/matchers.d.ts.map +1 -1
  51. package/dist/runtime/matchers.js +3 -6
  52. package/dist/runtime/matchers.js.map +1 -1
  53. package/dist/runtime/run.d.ts +13 -13
  54. package/dist/runtime/run.d.ts.map +1 -1
  55. package/dist/runtime/run.js +47 -47
  56. package/dist/runtime/run.js.map +1 -1
  57. package/dist/runtime/runner.d.ts +12 -12
  58. package/dist/runtime/runner.d.ts.map +1 -1
  59. package/dist/runtime/runner.js +10 -10
  60. package/dist/runtime/runner.js.map +1 -1
  61. package/dist/runtime/suite-config.d.ts +1 -1
  62. package/dist/runtime/suite-config.js +1 -1
  63. package/dist/runtime/suite-taps.d.ts +17 -17
  64. package/dist/runtime/suite-taps.d.ts.map +1 -1
  65. package/dist/runtime/suite-taps.js +7 -7
  66. package/dist/runtime/suite-taps.js.map +1 -1
  67. package/dist/runtime/suite.d.ts +43 -43
  68. package/dist/runtime/suite.d.ts.map +1 -1
  69. package/dist/runtime/suite.js +16 -15
  70. package/dist/runtime/suite.js.map +1 -1
  71. package/dist/runtime/test-context.d.ts +8 -8
  72. package/dist/runtime/test-context.d.ts.map +1 -1
  73. package/dist/runtime/test-context.js +5 -5
  74. package/dist/runtime/test-context.js.map +1 -1
  75. package/dist/runtime/thenable.d.ts +22 -0
  76. package/dist/runtime/thenable.d.ts.map +1 -0
  77. package/dist/runtime/thenable.js +35 -0
  78. package/dist/runtime/thenable.js.map +1 -0
  79. package/dist/runtime/worker.js +4 -4
  80. package/dist/runtime/worker.js.map +1 -1
  81. package/dist/time/freeze.js +1 -0
  82. package/dist/time/freeze.js.map +1 -1
  83. package/index.win32-x64-msvc.node +0 -0
  84. package/package.json +1 -1
package/README.md CHANGED
@@ -43,12 +43,12 @@ export default {
43
43
  ```
44
44
 
45
45
  A suite's name reaches the tests as `ctx.test.options.meta.suite.name`
46
- and rides on the `suite:*` events — `meta.suite` is the suite object, as
47
- in Japa, not the bare string. Without a config file — or when a
46
+ and rides on the `suite:*` events — `meta.suite` is the suite object,
47
+ not the bare string. Without a config file — or when a
48
48
  positional is not a suite name — positionals stay paths, exactly as
49
49
  before.
50
50
 
51
- A suite may carry `configure(suite)` — Japa's `TestSuite.configure` — which
51
+ A suite may carry `configure(suite)`, which
52
52
  gets the same handle as the bootstrap's `configureSuite` and runs after it.
53
53
  It costs an import of the config module in EVERY worker, because a function
54
54
  cannot cross the process boundary: `configureSuite` in `tests/bootstrap.ts`
@@ -60,7 +60,7 @@ flags act on: `--watch` re-runs every selected suite on each change (one
60
60
  watcher for the whole sequence), `--bail` stops at the suite that failed,
61
61
  and the `--failed` cache holds every suite's failures.
62
62
 
63
- `files` takes Japa's three forms — one pattern, an array of them, or a
63
+ `files` takes three forms — one pattern, an array of them, or a
64
64
  callback returning the URLs (`files: () => [pathToFileURL(…)]`), which
65
65
  runs in the CLI process and can therefore reach files no suffix-based
66
66
  discovery would find.
@@ -77,33 +77,33 @@ One form is refused rather than approximated: the negated extglob GROUP
77
77
  near-miss would silently select the wrong files — the one thing a file
78
78
  selector must not do. Write a `!pattern` entry instead.
79
79
 
80
- Filters follow Japa: `--tests` and `--groups` take exact titles,
80
+ Filters: `--tests` and `--groups` take exact titles,
81
81
  `--files` matches path segments (`--files=user`, `--files=unit/*`),
82
82
  `--tags` matches ANY of the given tags (`--match-all`, spelled
83
83
  `--matchAll` too, requires every one), and a `~@tag` / `!@tag` entry
84
84
  excludes. `--suite=<name>` names the suite the files belong to
85
- (`"default"` otherwise, like Japa's implicit suite). `--grep` is a helix
85
+ (`"default"` otherwise the implicit suite). `--grep` is a helix
86
86
  extra: a regex or substring over the full test name.
87
87
 
88
88
  `--bail` stops at the first failure; `--bail-layer=group|suite|runner`
89
89
  says how far that reaches. Within a file the remaining tests are
90
- reported as SKIPPED, like Japa. Files not yet started are dropped
90
+ reported as SKIPPED. Files not yet started are dropped
91
91
  rather than skipped — a named deviation that follows from per-file
92
92
  process isolation: reporting them as skipped would mean spawning every
93
93
  remaining file just to collect names.
94
94
 
95
95
  `--list-pinned` collects the files, prints the tests marked `.pin()` and
96
- runs nothing — the global `setup` hooks are skipped too, as in Japa,
96
+ runs nothing — the global `setup` hooks are skipped too,
97
97
  since nothing they would open gets used. It stays on the TypeScript
98
98
  pool: it prints a list rather than executing, so the native engine's
99
99
  fast path buys nothing.
100
100
 
101
101
  `--failed` re-runs only what failed last time, from the cache each run
102
- writes to `node_modules/.cache/helix/summary.json` (same `{ tests }`
103
- shape as Japa). `--reporters=spec,json` activates several reporters at
102
+ writes to `node_modules/.cache/helix/summary.json` (a `{ tests }`
103
+ shape). `--reporters=spec,json` activates several reporters at
104
104
  once. `--force-exit` (or `forceExit` in the config) calls
105
105
  `process.exit()` as soon as the run ends; without it the process exits
106
- on its own once the event loop drains, as in Japa — so a resource a test
106
+ on its own once the event loop drains — so a resource a test
107
107
  left open surfaces as a diagnosable hang instead of being swallowed.
108
108
 
109
109
  All of these work on BOTH orchestrators: the native (Rust) engine
@@ -139,77 +139,32 @@ the AdonisJS idiom (`setup: [() => testUtils.db().migrate()]`, where
139
139
  `migrate()` resolves to the rollback). Returned undos unwind first, then
140
140
  the declared teardowns, both in reverse order.
141
141
 
142
- `configureSuite` receives Japa's `Suite` surface: `name`, `setup`,
142
+ `configureSuite` receives the `Suite` surface: `name`, `setup`,
143
143
  `teardown`, `bail`, and the `onTest` / `onGroup` taps — each mapped onto
144
144
  the node the runtime actually reads, so `suite.onTest(t => t.timeout(30_000))`
145
145
  really does change the timeout. What a callback cannot get is what only
146
146
  the owner of execution has (`add`, `stack`, `exec`, `failed`): helix
147
147
  builds the tree from the file's own `describe`/`test` and runs it itself.
148
148
 
149
- Two more Japa `Config` fields live here too, since helix has no
149
+ Two more `Config` fields live here too, since helix has no
150
150
  `bin/test.ts` to put them in: `filters` (`{ tests, groups, tags, matchAll }`
151
151
  — the CLI flags still win over them) and `importer`, the hook that replaces
152
- the plain dynamic import of a test file. Japa's `filters.files` /
152
+ the plain dynamic import of a test file. `filters.files` /
153
153
  `filters.suites` stay CLI-side (`--files`, a suite positional): helix
154
154
  settles the file list before any worker — and so any bootstrap — exists,
155
155
  and filtering there still avoids the spawn.
156
156
 
157
157
  `runnerHooks` run ONCE for the whole run, in the process that spawns the
158
- workers — Japa's semantics. A migration in `setup` migrates once, not once
158
+ workers. A migration in `setup` migrates once, not once
159
159
  per test file. Everything else in the bootstrap is per worker because it has
160
160
  to be: a context macro, a filter, an importer only mean anything in the
161
161
  process that loads the test file, which is why `plugins` are where an
162
162
  in-memory resource belongs.
163
163
 
164
- ## Official Japa plugins
165
-
166
- `japaPlugins: true` in `helix.config` points `@japa/runner/core` at a helix
167
- shim in every worker, so a plugin written for Japa instruments helix:
168
-
169
- ```ts
170
- // helix.config.ts
171
- export default { japaPlugins: true }
172
-
173
- // tests/bootstrap.ts
174
- import { assert } from "@japa/assert"
175
- export const plugins = [assert()]
176
- ```
177
-
178
- This is what "not drop-in" meant for the whole of this package's life, and
179
- it was never an API-shape problem: a plugin does not talk to the runner
180
- through an interface, it imports `Test` / `TestContext` and mutates them.
181
- Nothing helix does at runtime can change what that import already resolved
182
- to — module resolution can.
183
-
184
- Off by default: redirecting a package specifier is not something to do
185
- behind a user's back, and a project with no Japa plugin gains nothing. The
186
- shim exports every name the real module does — a missing one is an
187
- ImportError before any test runs, not a degraded experience. `Emitter` is
188
- helix's own and `Refiner` collects for real; `BaseReporter`, `Group`,
189
- `Suite` and `Runner` exist so imports resolve and `instanceof` answers
190
- `false` (a helix group is not a Japa `Group`), and throw on construction
191
- with the reason. `Test.isHelixShim` answers "which module did this import
192
- resolve to?", a question that otherwise costs an afternoon.
193
-
194
- The alias goes into the PARENT too, not just the workers: the parent
195
- imports the bootstrap for `runnerHooks`, and two processes resolving that
196
- specifier differently is how a top-level registration lands on a class
197
- nothing reads. It is switched off again when the run ends —
198
- `node:module.register()` has no counterpart, so a host running twice in one
199
- process would otherwise keep resolving to the shim after asking for the
200
- real module. ESM only — under a CJS build the import is a `require`, which an ESM
201
- resolve hook never sees.
202
-
203
- A `Test.executed` hook is a VERDICT: what it throws fails the test, which is
204
- how `@japa/assert` enforces `assert.plan(n)`. And a plugin may replace
205
- `assert` — helix ships one, but a project installing `@japa/assert` is
206
- asking for that one. `cleanup` and `test` stay helix's: the runtime hands
207
- them to the body, and a test with someone else's `cleanup` is not a test.
208
-
209
164
  ## Plugins
210
165
 
211
- A plugin is a function run once at `configure()` time, handed the same
212
- object Japa hands its plugins — plus two helix extras:
166
+ A plugin is a function run once at `configure()` time, handed the
167
+ run's configuration object — plus two helix extras:
213
168
 
214
169
  ```ts
215
170
  await configure({
@@ -223,17 +178,17 @@ await configure({
223
178
  })
224
179
  ```
225
180
 
226
- - `config` — Japa's `BaseConfig`, filled in with what this run actually is:
181
+ - `config` — the run's `BaseConfig`, filled in with what this run actually is:
227
182
  `cwd`, `timeout`, `retries`, `filters`, `configureSuite`, `reporters`,
228
183
  `plugins`, `importer`, `refiner`, `forceExit`, `setup`, `teardown`. What a
229
184
  plugin can STEER is marked as such below; `filters.files` / `filters.suites`
230
185
  and `reporters.activated` report what the CLI decided, because the file list
231
186
  and the reporter chain are settled before a worker exists
232
- - `cliArgs` — every flag the CLI forwarded to this worker (Japa's set:
187
+ - `cliArgs` — every flag the CLI forwarded to this worker (the set:
233
188
  `tags`, `tests`, `groups`, `files`, `matchAll`, `timeout`, `retries`,
234
189
  `reporters`, `bail`, `bailLayer`, `failed`, `forceExit`, `suite`)
235
190
  - `runner` — `getSummary()`, `failed`, `bail()`, `onSuite()`, `suites`,
236
- and `registerReporter()`, which hands a Japa reporter this worker's
191
+ and `registerReporter()`, which hands a reporter this worker's
237
192
  runner and emitter. It observes THIS FILE; run-wide output is the CLI's
238
193
  (`--reporters`, `run({ reporterInstance })`). `add` / `start` / `exec` /
239
194
  `end` throw a `RunnerNotDrivableError` explaining that the CLI owns
@@ -241,16 +196,15 @@ await configure({
241
196
  crash they would otherwise be
242
197
  - `emitter` — `runner:start` / `suite:*` / `group:*` / `test:*`, with
243
198
  `errors[].error` the thrown `Error` itself
244
- - `context` — `macro` / `getter` (also on the `TestContext` class, as
245
- in Japa)
199
+ - `context` — `macro` / `getter` (also on the `TestContext` class)
246
200
  - `cleanup` — a teardown run once the file's tests finish
247
201
 
248
202
  `config` and `cliArgs` are handed over MUTABLE and read back once every
249
203
  plugin has run, so a plugin can raise `config.timeout`, push a `setup`
250
204
  hook, narrow `cliArgs.tags`, call `config.refiner.add("tags", […])` or
251
- replace `config.configureSuite` and have the run follow — Japa's contract.
205
+ replace `config.configureSuite` and have the run follow.
252
206
  Plugins therefore run BEFORE both the run's `setup` hooks and
253
- `configureSuite`, as in Japa.
207
+ `configureSuite`.
254
208
 
255
209
  In `package.json`, call the `helix` bin directly — in npm scripts it resolves to
256
210
  `node_modules/.bin/helix` and bootstraps the TS loader itself, so the verbose
@@ -280,46 +234,6 @@ Both commands run independently in CI. Stage 2b will retire vitest
280
234
  once the helix self-test corpus reaches parity coverage with the
281
235
  vitest suite.
282
236
 
283
- ### Japa parity proofs (golden tests)
284
-
285
- `tests/golden/` runs helix against the **real `@japa/runner`**. Every
286
- spec under `specs/helix/` has a byte-identical twin under
287
- `specs/japa/` — only the runner import differs. Each pair is executed
288
- by its own runner; both harnesses write the same event
289
- journal (`runner:start`, `group:start`, `test:start`, `test:end`, …)
290
- and the journals must match event for event:
291
-
292
- | Spec | What it pins down |
293
- | --- | --- |
294
- | `lifecycle` | group `setup`/`teardown`/`each.*` order |
295
- | `outcomes` | pass / fail / `.skip()` / todo / tags, as reported |
296
- | `dataset` | `.with()` expansion and `{prop}` / `{$i}` titles |
297
- | `retries` | one start/end pair per test, 1-based `retryAttempt` |
298
- | `macros` | `test.macro(callback)` + `t.cleanup` |
299
- | `group_identity` | `test.group()` returns the instance its hooks get |
300
- | `filters` | `--tags` (OR), `--match-all`, `~@tag`, `--tests`, `--groups` |
301
-
302
- Each journal entry also carries the payload's RAW key set, so the
303
- comparison is not "the two runners agree on the fields we chose to look
304
- at" but "they hand a reporter the same object". That is what pinned
305
- `isTodo`/`retries` to always-present, `isSkipped`/`isFailing`/
306
- `skipReason` to only-when-set, and the bail skip reason to Japa's own
307
- wording.
308
-
309
- The filter matrix runs the same flags through both runners, including
310
- the rules that a group — or a whole suite — with no runnable test
311
- announces nothing.
312
-
313
- `tests/golden/assert-surface.test.ts` does the same for assertions: it
314
- asserts helix exposes every public assertion of the installed
315
- `@japa/assert`, then runs a battery of inputs through BOTH
316
- implementations and requires the same verdict (this is what pinned
317
- `sameMembers` to strict equality and `sameDeepMembers` to structural).
318
-
319
- Since helix runs one process per FILE, `suite:*` fires once per file
320
- rather than once for a multi-file suite. That is the only deviation the
321
- golden journals still carry.
322
-
323
237
  ### Vitest parity proofs
324
238
 
325
239
  A handful of identical test bodies live in BOTH directories
@@ -334,8 +248,8 @@ currently cover:
334
248
  - assertion failure shapes (`AssertionError` thrown, message contains
335
249
  both received and expected values)
336
250
 
337
- What the VITEST parity proofs do **NOT** cover today (the Japa golden
338
- tests above cover the runner semantics):
251
+ What the VITEST parity proofs do **NOT** cover today (the runner semantics are covered by the
252
+ self-test suite):
339
253
 
340
254
  - Spy / fake-timer parity (`vi.fn`, `vi.spyOn`, `vi.useFakeTimers`).
341
255
  - Failure-pipeline parity (i.e. that both runners REPORT a failed
package/bin/helix.js CHANGED
@@ -49,9 +49,9 @@ const FLAG_SPEC = {
49
49
  },
50
50
  "match-all": {
51
51
  kind: "boolean",
52
- help: "Require ALL --tags instead of any (Japa parity)",
52
+ help: "Require ALL --tags instead of any",
53
53
  },
54
- // Japa's parser accepts both spellings (`matchAll` with `match-all` as its
54
+ // helix's parser accepts both spellings (`matchAll` with `match-all` as its
55
55
  // alias), so both work here too.
56
56
  matchAll: {
57
57
  kind: "boolean",
@@ -59,40 +59,40 @@ const FLAG_SPEC = {
59
59
  },
60
60
  tests: {
61
61
  kind: "string",
62
- help: "Comma-separated exact test titles to run (Japa --tests)",
62
+ help: "Comma-separated exact test titles to run (--tests)",
63
63
  },
64
64
  groups: {
65
65
  kind: "string",
66
- help: "Comma-separated exact group titles to run (Japa --groups)",
66
+ help: "Comma-separated exact group titles to run (--groups)",
67
67
  },
68
68
  suite: {
69
69
  kind: "string",
70
- help: "Name of the suite these files belong to (Japa meta.suite)",
70
+ help: "Name of the suite these files belong to (meta.suite)",
71
71
  },
72
72
  files: {
73
73
  kind: "string",
74
- help: "Comma-separated substrings matched against test file paths (Japa --files)",
74
+ help: "Comma-separated substrings matched against test file paths (--files)",
75
75
  },
76
76
  reporters: {
77
77
  kind: "string",
78
- help: "Comma-separated reporters to activate, e.g. spec,json (Japa --reporters)",
78
+ help: "Comma-separated reporters to activate, e.g. spec,json (--reporters)",
79
79
  },
80
- bail: { kind: "boolean", help: "Stop at the first failure (Japa --bail)" },
80
+ bail: { kind: "boolean", help: "Stop at the first failure (--bail)" },
81
81
  "bail-layer": {
82
82
  kind: "string",
83
- help: "How far a bail reaches: group|suite|runner (Japa --bail-layer)",
83
+ help: "How far a bail reaches: group|suite|runner (--bail-layer)",
84
84
  },
85
85
  failed: {
86
86
  kind: "boolean",
87
- help: "Re-run only the tests that failed last run (Japa --failed)",
87
+ help: "Re-run only the tests that failed last run (--failed)",
88
88
  },
89
89
  "list-pinned": {
90
90
  kind: "boolean",
91
- help: "Print the tests marked .pin() and run nothing (Japa --list-pinned)",
91
+ help: "Print the tests marked .pin() and run nothing (--list-pinned)",
92
92
  },
93
93
  "force-exit": {
94
94
  kind: "boolean",
95
- help: "process.exit() as soon as the run ends, without draining the event loop (Japa --force-exit)",
95
+ help: "process.exit() as soon as the run ends, without draining the event loop (--force-exit)",
96
96
  },
97
97
  watch: { kind: "boolean", help: "Watch mode — re-run on file changes" },
98
98
  "watch-debounce": {
@@ -247,7 +247,7 @@ function findTsxLoader() {
247
247
  const TEST_SUFFIX = /(\.(test|spec))?\.[cm]?[jt]sx?$/;
248
248
 
249
249
  /**
250
- * Japa's `--files` rule: keep a file when its path ENDS WITH the filter, or
250
+ * helix's `--files` rule: keep a file when its path ENDS WITH the filter, or
251
251
  * when every segment of the filter (read right-to-left, `*` matching anything)
252
252
  * matches the corresponding path segment of the file minus its test suffix.
253
253
  * `--files=user` keeps `tests/unit/user.test.ts`; `--files=unit/*` keeps
@@ -500,25 +500,10 @@ async function main() {
500
500
  suffixes: parsed.flags.include,
501
501
  hardExcludes: parsed.flags.exclude,
502
502
  },
503
- // `japaPlugins` points `@japa/runner/core` at helix's shim in every
504
- // worker, so an official Japa plugin instruments helix. Appended to
505
- // the loader list rather than replacing it: the test files still need
506
- // their TS loader.
507
- nodeArgs: [
508
- ...(parsed.flags.tsx === false || !tsxLoader
503
+ nodeArgs:
504
+ parsed.flags.tsx === false || !tsxLoader
509
505
  ? []
510
- : ["--import", tsxLoader]),
511
- ...(helixConfig.japaPlugins === true
512
- ? [
513
- "--import",
514
- pathToFileURL(
515
- useDist
516
- ? path.resolve(here, "../dist/japa/japa-alias.mjs")
517
- : path.resolve(here, "../src/japa/japa-alias.mjs"),
518
- ).href,
519
- ]
520
- : []),
521
- ],
506
+ : ["--import", tsxLoader],
522
507
  coverage: parsed.flags.coverage
523
508
  ? {
524
509
  enabled: true,
@@ -577,7 +562,7 @@ async function main() {
577
562
  process.env.HELIX_BAIL = "1";
578
563
  }
579
564
  // Flags a plugin reads off `api.cliArgs` but the runtime itself doesn't
580
- // act on — forwarded for the same reason as the filters: Japa hands its
565
+ // act on — forwarded for the same reason as the filters: helix hands its
581
566
  // plugins the whole flag set.
582
567
  if (cfg.reporters !== undefined) {
583
568
  process.env.HELIX_REPORTERS = cfg.reporters.join(",");
@@ -592,7 +577,7 @@ async function main() {
592
577
  if (parsed.flags["list-pinned"] === true) {
593
578
  process.env.HELIX_LIST_PINNED = "1";
594
579
  }
595
- // Positionals reach a plugin as `api.cliArgs._`, like Japa's.
580
+ // Positionals reach a plugin as `api.cliArgs._`, like helix's.
596
581
  if (parsed.positional.length > 0) {
597
582
  process.env.HELIX_POSITIONALS = parsed.positional.join(",");
598
583
  }
@@ -603,7 +588,7 @@ async function main() {
603
588
  process.env.HELIX_BAIL_LAYER = String(parsed.flags["bail-layer"]);
604
589
  }
605
590
  // `--failed` replays the previous run's failures as a `--tests` filter,
606
- // exactly like Japa's retry plugin.
591
+ // exactly like helix's retry plugin.
607
592
  if (parsed.flags.failed === true) {
608
593
  const failedModule = pathToFileURL(
609
594
  useDist
@@ -622,11 +607,9 @@ async function main() {
622
607
  }
623
608
 
624
609
  // `runnerHooks` run ONCE around the whole run, here, and the workers are
625
- // told to skip them — Japa's semantics, and the difference between
610
+ // told to skip them — the difference between
626
611
  // migrating once and migrating once per test file.
627
- const dropGlobalHooks = await runGlobalHooks(process.env.HELIX_BOOTSTRAP, {
628
- japaPlugins: helixConfig.japaPlugins === true,
629
- });
612
+ const dropGlobalHooks = await runGlobalHooks(process.env.HELIX_BOOTSTRAP);
630
613
 
631
614
  if (!selectedSuites) {
632
615
  try {
@@ -637,7 +620,7 @@ async function main() {
637
620
  }
638
621
  }
639
622
 
640
- // Suites run one after another (Japa runs them in sequence too), each
623
+ // Suites run one after another (they run in sequence), each
641
624
  // with its own files, timeout, retries and `meta.suite` name. The
642
625
  // sequence is handed to the orchestrator as a whole so watch mode
643
626
  // wraps ALL of it in one watcher and the `--failed` cache holds every
@@ -725,10 +708,10 @@ async function main() {
725
708
  }
726
709
 
727
710
  /**
728
- * Japa semantics: the process exits on its own once the event loop drains, so a
711
+ * The process exits on its own once the event loop drains, so a
729
712
  * resource a test left open surfaces as a hang you can diagnose — rather than
730
713
  * being swallowed by an unconditional `process.exit`, which also truncates
731
- * pending stdout writes. `--force-exit` is the escape hatch, exactly as in Japa.
714
+ * pending stdout writes. `--force-exit` is the escape hatch, exactly as in helix.
732
715
  */
733
716
  /**
734
717
  * How long to wait for the event loop to drain before reporting what is holding
@@ -1,7 +1,7 @@
1
1
  /**
2
- * The `--failed` cache — Japa's "run what failed last time".
2
+ * The `--failed` cache — helix's "run what failed last time".
3
3
  *
4
- * Japa writes the failed test TITLES to a cache file after every run, and
4
+ * helix writes the failed test TITLES to a cache file after every run, and
5
5
  * `--failed` turns them into a `--tests` filter on the next one. Same contract
6
6
  * here, same file shape (`{ tests: string[] }`), under
7
7
  * `node_modules/.cache/helix/summary.json`.
@@ -1,7 +1,7 @@
1
1
  /**
2
- * The `--failed` cache — Japa's "run what failed last time".
2
+ * The `--failed` cache — helix's "run what failed last time".
3
3
  *
4
- * Japa writes the failed test TITLES to a cache file after every run, and
4
+ * helix writes the failed test TITLES to a cache file after every run, and
5
5
  * `--failed` turns them into a `--tests` filter on the next one. Same contract
6
6
  * here, same file shape (`{ tests: string[] }`), under
7
7
  * `node_modules/.cache/helix/summary.json`.
@@ -36,12 +36,12 @@ export interface PoolConfig {
36
36
  */
37
37
  extraEnv?: NodeJS.ProcessEnv;
38
38
  /**
39
- * Stop the run once a file reports a failure (Japa `--bail` at the runner
39
+ * Stop the run once a file reports a failure (helix `--bail` at the runner
40
40
  * layer). Files already in flight finish; files not yet started are never
41
41
  * spawned.
42
42
  *
43
- * Named deviation from Japa: those files are DROPPED, not reported as
44
- * skipped. Japa can skip them because it collected every test in one
43
+ * Named deviation from helix: those files are DROPPED, not reported as
44
+ * skipped. helix can skip them because it collected every test in one
45
45
  * process; helix runs one process per file, so a file that never starts has
46
46
  * no tests to skip.
47
47
  */
@@ -54,7 +54,7 @@ export declare function makeReporter(name: string | undefined, useColors: boolea
54
54
  export declare function makeReportersFrom(reporters: readonly Reporter[]): Reporter;
55
55
  /**
56
56
  * Build the reporter for a run. One name behaves exactly as before; several
57
- * (Japa `--reporters=spec,json`) fan out to all of them.
57
+ * (`--reporters=spec,json`) fan out to all of them.
58
58
  */
59
59
  export declare function makeReporters(names: readonly string[] | undefined, useColors: boolean): Reporter;
60
60
  export {};
@@ -122,7 +122,7 @@ export function makeReporter(name, useColors) {
122
122
  }
123
123
  }
124
124
  /**
125
- * Fan one run out to several reporters — Japa activates a LIST of reporters
125
+ * Fan one run out to several reporters — helix activates a LIST of reporters
126
126
  * (`--reporters=spec,json`), not just one. Each callback reaches every reporter;
127
127
  * a throwing reporter is isolated so it cannot take the run down with it.
128
128
  */
@@ -166,7 +166,7 @@ export function makeReportersFrom(reporters) {
166
166
  }
167
167
  /**
168
168
  * Build the reporter for a run. One name behaves exactly as before; several
169
- * (Japa `--reporters=spec,json`) fan out to all of them.
169
+ * (`--reporters=spec,json`) fan out to all of them.
170
170
  */
171
171
  export function makeReporters(names, useColors) {
172
172
  const list = (names ?? []).filter((n) => n.trim().length > 0);
package/dist/cli/run.d.ts CHANGED
@@ -33,7 +33,7 @@ export interface RunConfig {
33
33
  /** Reporter name: `"dot" | "spec" | "json"`. Default `"spec"`. */
34
34
  reporter?: string;
35
35
  /**
36
- * Activate several reporters at once (Japa `--reporters=spec,json`). Takes
36
+ * Activate several reporters at once (`--reporters=spec,json`). Takes
37
37
  * precedence over {@link RunConfig.reporter} when it holds more than one
38
38
  * name.
39
39
  */
@@ -55,17 +55,17 @@ export interface RunConfig {
55
55
  /** Watch mode: re-run on file changes. */
56
56
  watch?: WatchOptions;
57
57
  /**
58
- * Stop the run at the first failure (Japa `--bail`). Within a file the
58
+ * Stop the run at the first failure (`--bail`). Within a file the
59
59
  * remaining tests are reported as skipped; files not yet started are dropped.
60
60
  */
61
61
  bail?: boolean;
62
62
  /**
63
- * Re-run only the tests that failed last time (Japa `--failed`). Reads the
63
+ * Re-run only the tests that failed last time (`--failed`). Reads the
64
64
  * cache written by the previous run and applies it as a `--tests` filter.
65
65
  */
66
66
  failed?: boolean;
67
67
  /**
68
- * Collect the files, print the tests marked `.pin()`, and run nothing (Japa
68
+ * Collect the files, print the tests marked `.pin()`, and run nothing (helix
69
69
  * `--list-pinned`). Stays on the TypeScript pool: it prints a list rather
70
70
  * than executing anything, so the native engine's fast path buys nothing.
71
71
  */
@@ -90,7 +90,7 @@ export interface SuiteRun {
90
90
  config: RunConfig;
91
91
  }
92
92
  /**
93
- * Run suites one after another, the way Japa does. Two things only this level
93
+ * Run suites one after another. Two things only this level
94
94
  * can get right:
95
95
  * - watch mode wraps the WHOLE sequence in one watcher, so every suite runs
96
96
  * on every pass;
package/dist/cli/run.js CHANGED
@@ -115,7 +115,7 @@ async function runNative(config, root, files, writeCache) {
115
115
  return { summary, exitCode: payload.exitCode };
116
116
  }
117
117
  export async function run(config) {
118
- // Adonis/Japa parity: a test run executes in the `test` environment. Set it
118
+ // Adonis parity: a test run executes in the `test` environment. Set it
119
119
  // on the orchestrator BEFORE any worker spawns — both the native (Rust) and
120
120
  // TS pools inherit the parent process env, so every worker (where the app +
121
121
  // test code is actually loaded) starts with NODE_ENV=test. Mirrors AdonisJS
@@ -158,7 +158,7 @@ async function watching(config, pass) {
158
158
  }, pass);
159
159
  }
160
160
  /**
161
- * Run suites one after another, the way Japa does. Two things only this level
161
+ * Run suites one after another. Two things only this level
162
162
  * can get right:
163
163
  * - watch mode wraps the WHOLE sequence in one watcher, so every suite runs
164
164
  * on every pass;
@@ -238,7 +238,7 @@ const SILENT_REPORTER = {
238
238
  };
239
239
  /**
240
240
  * `--list-pinned` output: every pinned test, grouped by the file it lives in.
241
- * Japa prints the list and exits 0 without running anything.
241
+ * helix prints the list and exits 0 without running anything.
242
242
  */
243
243
  function printPinnedTests(results) {
244
244
  let total = 0;
@@ -427,7 +427,7 @@ async function runOnce(config, writeCache = true) {
427
427
  return { summary, exitCode: 0 };
428
428
  }
429
429
  reporter.onSummary(summary);
430
- // Feed the `--failed` cache with this run's failures (Japa writes it from
430
+ // Feed the `--failed` cache with this run's failures (helix writes it from
431
431
  // a runner teardown).
432
432
  if (writeCache)
433
433
  await writeFailedCache(root, summary);
@@ -1 +1 @@
1
- {"version":3,"file":"run.js","sourceRoot":"","sources":["../../src/cli/run.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"run.js","sourceRoot":"","sources":["../../src/cli/run.ts"],"names":[],"mappings":"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"}
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * `bin/helix.js` reads `helix.config.*` and drives these; a framework that
6
6
  * declares its suites elsewhere (ream reads them from its rc file, the way
7
- * `@adonisjs/core` reads `adonisrc.ts` and hands the suites to Japa) composes
7
+ * `@adonisjs/core` reads `adonisrc.ts` and hands the suites to helix) composes
8
8
  * the same pieces instead of shelling out to the CLI.
9
9
  */
10
10
  export { BOOTSTRAP_FILENAMES, resolveBootstrap, } from "../runtime/bootstrap.js";
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * `bin/helix.js` reads `helix.config.*` and drives these; a framework that
6
6
  * declares its suites elsewhere (ream reads them from its rc file, the way
7
- * `@adonisjs/core` reads `adonisrc.ts` and hands the suites to Japa) composes
7
+ * `@adonisjs/core` reads `adonisrc.ts` and hands the suites to helix) composes
8
8
  * the same pieces instead of shelling out to the CLI.
9
9
  */
10
10
  export { BOOTSTRAP_FILENAMES, resolveBootstrap, } from "../runtime/bootstrap.js";