TESTING.md
How we structure tests and which commands to run locally and in CI.
| Package | Path | Runner | Notes |
|---|---|---|---|
| CLI + MCP core | gitnexus/ | Vitest | Primary test surface in CI |
| Web UI | gitnexus-web/ | Vitest | Unit/component tests |
| Web UI E2E | gitnexus-web/ | Playwright | Run when changing UI flows |
gitnexus/ commandsFrom gitnexus/:
| Command | What it runs | When to use |
|---|---|---|
npm test | Full suite (all 3 vitest projects) | Before opening a PR |
npm run test:unit | Unit tests only (test/unit/) | Tight development loop |
npm run test:integration | Integration tests (test/integration/) | After changing pipelines, DB, workers |
npm run test:coverage | Full suite + v8 coverage with thresholds | Checking coverage impact |
npm run test:parity | Scope-resolution parity for all migrated languages | After changing resolver or scope code |
npm run test:cross-platform | Platform-sensitive subset only | Debugging a Windows/macOS issue |
npm run test:watch | Vitest in watch mode | Active development |
gitnexus-web/ commandsFrom gitnexus-web/:
| Command | What it runs | When to use |
|---|---|---|
npm test | Unit/component tests (vitest) | After changing web code |
npm run test:coverage | Unit tests + coverage | Checking coverage impact |
npm run test:e2e | Playwright browser tests | After changing UI flows (requires gitnexus serve + npm run dev) |
cd gitnexus && npx tsc --noEmit && npm test
cd ../gitnexus-web && npx tsc -b --noEmit && npm test
A husky pre-commit hook (.husky/pre-commit) runs automatically on every git commit:
lint-staged runs prettier on staged filesgitnexus-web/ files staged → tsc -b --noEmitgitnexus/ files staged → tsc --noEmitTests do not run in the pre-commit hook — they run in CI (ci-tests.yml) only.
Skip with git commit --no-verify (use sparingly).
gitnexus/vitest.config.ts defines three projects for safety isolation:
| Project | Files | Parallelism | Purpose |
|---|---|---|---|
lbug-db | Native LadybugDB integration tests (explicit list) | Sequential | Prevents file-lock conflicts from native mmap addon |
cli-e2e | skills-e2e.test.ts | Sequential | CLI process spawning requires serial execution |
default | Everything else | Parallel | Fast execution for pure logic and parser tests |
When adding a new test that uses native LadybugDB (@ladybugdb/core), add it to the lbug-db project's explicit include list and the default project's exclude list.
gitnexus/test/integration.test/integration/resolvers/.data-testid attributes for stable selectors. Tests run against real backend (gitnexus serve) and Vite dev server.Every language resolves calls and inheritance through the scope-resolution pipeline — the legacy call-resolution DAG and the per-language REGISTRY_PRIMARY_<LANG> flag were removed in RING4-1 (#942). Each language's resolver test lives at test/integration/resolvers/<slug>.test.ts and runs once, on the single scope-resolution path, as part of the normal tests job (vitest test/**/*.test.ts).
Adding a language: register its ScopeResolver in scope-resolution/pipeline/registry.ts (SCOPE_RESOLVERS) and add the resolver test file — no workflow or config edit needed.
Windows and macOS CI runs only the platform-sensitive test subset (~50 files out of 373). The full suite runs on Ubuntu.
The subset is defined in gitnexus/scripts/cross-platform-tests.ts and includes:
process.platform guards, path.sep behavior, EPERM/EBUSY error classificationlbug-* integration tests (N-API addon with known platform-varying behavior)child_process.spawn, shell quoting, CLI invocationsworker_threadsWhen adding a platform-sensitive test, add it to the appropriate section in scripts/cross-platform-tests.ts.
Every test file matches one of the three vitest projects. To verify:
cd gitnexus
npx vitest list 2>/dev/null | wc -l # should match total test count
To check the cross-platform list is up to date, run npm run test:cross-platform — it fails fast if any listed file is missing.
GitHub Actions (.github/workflows/ci.yml) orchestrate:
| Workflow | Jobs | Purpose |
|---|---|---|
ci-quality.yml | format, lint, typecheck, typecheck-web, workflow-convention | Code quality gates |
ci-tests.yml | ubuntu/coverage, cross-platform (Win/Mac), packaged-install-smoke | Full suite + coverage on Ubuntu; platform-sensitive subset on Win/Mac |
ci-scope-parity.yml | discover, parity | Scope-resolution parity for all migrated languages |
ci-e2e.yml | e2e (chromium) | Playwright E2E, gated on gitnexus-web/** changes |
The CI Gate job in ci.yml is the single required check for branch protection. It requires quality, tests, e2e, and scope-parity to all pass.
Re-run the full relevant suite when:
For staged releases or UI betas: deploy to a staging environment, collect structured feedback, watch errors and latency, then iterate before a wider release.