Headlamp
Headlamp is a Rust-powered test UX CLI: smarter test selection, cleaner output, and a unified workflow across jest, Rust tests (headlamp runner), cargo test, cargo nextest and pytest.
Headlamp is useful when you want a consistent way to run tests across different projects and keep feedback fast as your repo grows. It can select tests based on what changed, surface failures in a readable format, and keep common defaults (like runner args and coverage settings) in a single config file so your team doesn’t have to remember a long list of flags.
Why Headlamp
- One CLI, many runners:
--runner=headlamp|jest|cargo-nextest|cargo-test|pytest - Selection that scales: run what changed (
--changed) and what’s related (dependency-graph driven) - Coverage-first UX: coverage output you can actually read
- Fast: Rust core + caching
Installation
npm (Node.js projects)
Requirements:
- Node >= 18
Install:
Run:
Cargo (Rust projects)
Install from crates.io:
Quickstart
Jest
Forward runner args after -- (unknown args are forwarded):
Cargo nextest / cargo test
Requirements:
--runner=cargo-nextest: requirescargo-nextestto be installed.- Install via:
cargo install cargo-nextest(or your preferred installer)
- Install via:
Headlamp (native Rust runner)
Runs Rust test binaries directly (built via cargo test --no-run), parses libtest output, and renders Headlamp’s unified test UI.
Rust coverage requirements
Rust coverage (--coverage) is collected via LLVM tools from rustup (no cargo-llvm-cov dependency).
- Install LLVM tools (stable):
- Optional (branch coverage when available): install nightly toolchain + LLVM tools:
Rust timing requirements (native runner)
Per-test timings in the native Rust runner (--runner=headlamp) require a preinstalled nightly toolchain.
Headlamp enables libtest JSON output + --report-time only when nightly is available (it will not auto-download nightly at runtime).
CLI
Run headlamp --help to see the up-to-date flags list.
Highlights:
- runners:
--runner=headlamp|jest|pytest|cargo-nextest|cargo-test - changed selection:
--changed=all|staged|unstaged|branch|lastCommit|lastReleaselastReleaseselects changes since the previous stable SemVer release tag
- coverage:
--coverageplus--coverage-ui,--coverage.detail, thresholds, etc.
Configuration
Headlamp discovers config from your repo root. Supported file names:
headlamp.config.tsheadlamp.config.jsheadlamp.config.mjsheadlamp.config.cjsheadlamp.config.jsonheadlamp.config.json5headlamp.config.jsoncheadlamp.config.yamlheadlamp.config.yml.headlamprcplus.headlamprc.*variants (.json,.json5,.jsonc,.yaml,.yml,.js,.cjs,.mjs,.ts)
Example: headlamp.config.ts
Rules:
- Must have a default export
- Only relative imports are supported inside the config file (
./and../)
export default {
// Runner defaults
jestArgs: ["--runInBand"],
// Run once before tests (npm script name or a shell command)
bootstrapCommand: "test:jest:bootstrap",
// Global toggles
ci: false,
verbose: false,
noCache: false,
// Coverage defaults
coverage: true,
coverageUi: "both",
coverage: {
abortOnFailure: true,
mode: "auto",
pageFit: true,
},
// Changed selection defaults
changed: { depth: 2 },
};
Contributing
Pull requests are welcome. For large changes, open an issue first to align on direction.
Support
- Bug reports and feature requests: GitHub Issues
License
MIT — see LICENSE.