@orkestrel/console 0.0.7 → 0.0.9

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.
@@ -1626,8 +1626,8 @@ var Reporter = class {
1626
1626
  * - **Self-driving but deterministically testable.** `start()` arms a `setInterval` that calls
1627
1627
  * {@link tick} each `interval`; each {@link tick} builds the styled `glyph + message` line for the
1628
1628
  * current frame, emits it on `frame`, writes `'\r' + line` to the sink, then advances the frame
1629
- * index (wrapping). A test drives frames by calling {@link tick} directly (NO real clock) and proves
1630
- * the timer arms / clears with fake timers.
1629
+ * index (wrapping). A test drives frames by calling {@link tick} directly, or arms a real short
1630
+ * `interval` and proves the timer arms / clears through the sink it writes to.
1631
1631
  * - **Leak-free timer.** The interval is ALWAYS cleared on {@link success} / {@link failure} /
1632
1632
  * {@link stop} / {@link destroy} — `#handle` is the single source of `active`, set on arm and unset
1633
1633
  * on clear, so a spinner never leaks a running interval.