npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@adlc/hollow-test

v1.7.0

Published

Diff-scoped mutation gate — the honest coverage check, mutating only changed lines (P3/C4).

Readme

hollow-test

ADLC phase: P3 gate (C4 — diff-scoped mutation)

Diff-scoped mutation gate — the honest coverage check. Mutates only the lines changed in your diff, runs your test suite against each mutant, and fails if any mutation survives. A surviving mutant proves hollow coverage: lines are executed but their behavior is unconstrained by any assertion.

Diff-scoping keeps the run at seconds-to-minutes rather than the hours that kill whole-codebase mutation testing.

Usage

hollow-test --test-cmd "node --test test/" [options]

Flags

| Flag | Default | Description | |------|---------|-------------| | --test-cmd <cmd> | (required) | Shell command to run the test suite. Must exit non-zero on failure. | | --base <ref> | HEAD | Git base ref for the diff (e.g. HEAD~1, main, a SHA). | | --max <n> | 20 | Maximum total mutants across all files. Budget is spread round-robin. | | --timeout-ms <n> | 120000 | Per-mutant test-command timeout in milliseconds. | | --target <file> | (none) | Mutate this file directly, independent of the diff (repeatable). Bypasses the test/spec path exclusion and mutates the whole file, not just diff-changed lines. | | --rails <ticket-file> | (none) | Path to a ticket JSON file; its declared rails globs are expanded against git ls-files and added as mutation targets (repeatable). | | --json | (off) | Machine-readable JSON output (for orchestrators). | | --help | (off) | Show usage and exit 0. |

Exit codes

| Code | Meaning | |------|---------| | 0 | Gate passes — all mutants were killed. | | 1 | Operational error — dirty working tree, not a git repo, bad arguments, or nothing to mutate (the diff contains no eligible source files and neither --target nor --rails was given). | | 2 | Gate fails — one or more mutants survived (hollow coverage). |

--target / --rails: the P3 rails-authoring / characterization-test case

A diff that adds only test files — exactly the shape of a P3 rails-authoring ticket, or a characterization-test ticket that pins existing, unchanged (frozen-rail) behavior — has nothing in filterTargetFiles()'s diff scope to mutate. Rather than silently reporting a vacuous 0/0/0 pass (indistinguishable from a genuinely strong suite), hollow-test exits 1 in that case unless an explicit target is given:

# Diff is test-only (new rails for src/foo.mjs, which itself didn't change) — mutate
# src/foo.mjs directly so the new rails are actually prosecuted:
hollow-test --test-cmd "node --test test/foo-rails.test.mjs" --base main \
  --target src/foo.mjs

# Same, but read the target from a ticket's declared "rails" (single-ticket object or a
# full tickets.json — rails merged across all tickets in the file):
hollow-test --test-cmd "node --test test/foo-rails.test.mjs" --base main \
  --rails .adlc/tickets.json

Examples

# Check the last commit
hollow-test --test-cmd "node --test test/" --base HEAD~1

# Check staged changes vs main
hollow-test --test-cmd "npm test" --base main --max 30

# Machine-readable output for CI
hollow-test --test-cmd "node --test test/*.test.mjs" --json

Safety guarantees

  1. Dirty-tree check: refuses to run if git status --porcelain is non-empty. This prevents accidentally leaving a corrupted file if the process is interrupted. Commit or stash your changes first.

  2. File restoration: every mutated file is restored via a try/finally block — even if the test command crashes or the process is interrupted via SIGINT. The SIGINT handler performs an emergency restore before exiting.

  3. Sequential execution: mutants are applied and tested one at a time (never in parallel) to avoid concurrent writes to the same file.

What is mutated (and what is skipped)

Mutation applies to plain JavaScript only: .mjs, .cjs, .js. This is an allow-list. TypeScript and JSX (.ts, .mts, .cts, .tsx, .jsx), Python, CSS and everything else are excluded, because the operators are text-based and cannot tell a comparison from a type argument or a JSX delimiter — Promise<unknown> becomes the invalid Promise>=unknown>, and a parse failure is currently scored as a killed mutant. See issue #293.

A file is also skipped when a path segment is test, tests, spec, specs, or __tests__, or when its basename matches a node --test discovery convention: test.js, test-*, test_*, *-test.*, *_test.*, *.test.* (and the spec equivalents).

Matching is segment- and basename-anchored on purpose: a substring test would exclude production paths such as packages/hollow-test/lib/targets.mjs or lib/attest.mjs.

Two escape hatches, because no convention resolves every case:

  • --test-glob <glob> — treat additional paths as tests.
  • --source-glob <glob> — treat paths as production source even when their name matches a test convention. Needed for product names like hollow-test.mjs and spec-lint.mjs, which are indistinguishable from tests by naming alone. For the same reason, hyphenated forms (foo-test.js, spec-foo.js) are not treated as tests — a hyphen is ambiguous between a test convention and a product name, and hollow-test.mjs and spec-lint.mjs are production files. If you use that convention, keep tests in a test/ directory or name them *.test.*. --target/--rails files bypass the test-path exclusion — the caller is deliberately naming a mutation target, and rails are usually test files.

They do not bypass the language allow-list. Operators are JS/TS-shaped, and a mutant that renders another language syntactically invalid makes the test command exit non-zero, which is scored as killed — a false pass. So:

  • --target <path> in an unsupported language is refused (exit 1). The caller named one file; dropping it silently would be its own silent pass.
  • --rails <ticket> expansions legitimately match non-source (schemas/**, JSON, fixtures). Those are filtered out and reported, and the run fails only if nothing mutable remains.

Within diff-derived eligible files, only lines changed in the diff are targeted; --target/--rails files are mutated in their entirety. Lines that are blank, comments, imports, export {, or console.* calls are skipped.

Invalid mutants

A mutation that produces code Node cannot parse is discarded, not scored. Line-based operators produce these routinely — null-return rewrites a multiline return { to return null; and strands the object literal's remaining lines.

This matters because a kill is inferred from a non-zero exit, and a file that does not parse also exits non-zero. Counting such a mutant as killed fakes coverage; counting it as survived blames the tests for code that was never valid. It is reported in its own invalid bucket in both the table and JSON.

If every mutant in a run is invalid, hollow-test exits 1 (operational failure) rather than passing: no assertion was exercised, so the run proves nothing.

Validation uses node --check, so no parser dependency is added and the real file extension and package type are honoured. Both the syntax check and the test run are tri-statevalid, invalid, or unknown. "Could not determine" never collapses into "valid": if the checker is killed, times out, or cannot spawn, the run fails operationally rather than guessing. The same applies to the test command itself: a spawn failure (EAGAIN, ENOMEM) is not a timeout, and a timeout is the only non-completion that counts as a kill. A kill must mean the tests ran and failed. Assuming validity would run the test command against unparseable source, whose non-zero exit is then scored as a kill — the very path this closes.

The all-invalid guard is applied per file, not just globally. A global check passes the moment any other file yields a kill, which would let an explicitly named --target go entirely untested while the run reports success.

Mutation operators (from @adlc/core)

| Operator | Example | |----------|---------| | invert-comparison | ===!==, <=> | | bool-flip | truefalse | | null-return | return exprreturn null | | off-by-one | literal nn+1 | | logic-swap | &&\|\| | | negate-guard-subclause | Array.isArray(x)!Array.isArray(x); if (value)if (!value); loose v == nullv != null | | array-literal-shrink | ['id', 'title', 'scope']['id', 'title'] | | ternary-swap | cond ? a : bcond ? b : a |

JSON output schema

{
  "tool": "hollow-test",
  "summary": {
    "total": 5,
    "killed": 4,
    "survived": 1
  },
  "mutants": [
    {
      "file": "src/calc.mjs",
      "line": 7,
      "operator": "null-return",
      "status": "survived",
      "timedOut": false,
      "original": "  return a + b;",
      "mutated": "  return null;"
    }
  ]
}

Relationship to sibling tools

  • rails-guard (C5): enforces that test files are not modified during build (they are the measuring instrument). hollow-test verifies that those tests actually constrain behavior.
  • review-calibration (C8): uses the same mutate operators to plant bugs and measure reviewer recall. hollow-test and review-calibration share core mutation machinery.
  • flail-detector (C6): hollow-test is a P3 gate; flail-detector watches the P4 build session. They serve complementary phases.

Core gaps

None. All required functionality (gitDiff, isDirty, isGitRepo, git, globMatch, mutate.generateMutants, mutate.applyMutant, mutate.changedLinesFromDiff, parseArgs, pass, gateFail, opError, printJson) is available in @adlc/core.

Implementation notes

NODE_TEST_CONTEXT stripping

Node.js v22 sets NODE_TEST_CONTEXT in child process environments when running under node --test. If a child process inherits this variable and itself calls node --test, it silently skips all test files (exits 0). hollow-test strips NODE_TEST_CONTEXT from the child environment before running each mutant's test command. This ensures mutation trials work correctly even when hollow-test is itself running inside a test harness.