mirror of
https://github.com/garrytan/gbrain.git
synced 2026-07-27 22:15:33 +00:00
* feat(eval-longmemeval): RunOpts.engine seam for shared benchmark brain Adds optional `engine?: PGLiteEngine` field to RunOpts. When set, runEvalLongMemEval uses the caller-provided engine and skips the withBenchmarkBrain wrapper (no fresh PGLite create, no disconnect on exit). When unset, the production CLI path is unchanged: withBenchmarkBrain creates and disposes a fresh engine per invocation. Designed for the test seam that's about to land: one beforeAll-created brain shared across all 13 runEvalLongMemEval calls in test/eval-longmemeval-e2e.slow.test.ts, amortizing the ~1-3s PGLite cold-create cost. runOneQuestion already calls resetTables() as its first line so per-test isolation is preserved across the shared engine. Pure additive seam — every existing caller (CLI, current tests that already create engines via withBenchmarkBrain implicitly) keeps its current behavior because opts.engine defaults to undefined. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * refactor(test): split eval-longmemeval slow tests + share engine across e2e half The 884-line test/eval-longmemeval.slow.test.ts was the heaviest single file in CI at ~359s on the matrix. Split by runEvalLongMemEval usage: - test/eval-longmemeval.slow.test.ts (trimmed): 8 pure describes, 15 tests. Harness lifecycle, resetTables, schema-migration robustness, warm-create speed gate, adapter haystackToPages, source-boost guard, loadResumeSet, buildByTypeSummary. Local wall: 1.985s, projected CI ~42s. - test/eval-longmemeval-e2e.slow.test.ts (NEW): 8 e2e describes, 11 tests. Every describe that calls runEvalLongMemEval — 13 call sites total. Threads a single beforeAll-created PGLite via the v0.41.10 RunOpts.engine seam. Local wall: 9.33s (was 15.09s without sharing); projected CI ~196s (was ~317s). - test/helpers/longmemeval-stub.ts (NEW): shared makeStubClient + StubCall. Matches the existing test/helpers/ convention (with-env.ts, reset-pglite.ts). Single source of truth across the two split files. - scripts/test-weights.json: replaced 359087ms entry with TWO entries (42000ms pure, 196000ms e2e). Projected linearly from local wall-clock × 21 CI scaling factor. First post-merge CI run will refine via scripts/mine-shard-weights.ts. Test count is preserved: 15 pure + 11 e2e = 26, matches original file. No production code changes in this commit — only test reorganization + opt-in to the RunOpts.engine seam from the previous commit. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * ci(test): bump matrix 6→10, dedicate two slow files, cache bun-install CI matrix wallclock: ~9 min → ~4.5 min. Three coordinated changes. 1. .github/workflows/test.yml matrix bumped from 6 → 10 shards. Per-shard total drops from 532s → 272s. Honest concurrency-budget call: total gated jobs go 13 → 18, so 2 concurrent PRs ≈ 36 queued, past the GH free-tier ~20 ceiling — single-PR runs unaffected, multi-PR days see queue pressure. Worth it for the 4-min CI saving. 2. Two slow files pulled out of the matrix and into their own dedicated jobs (sibling to verify, serial-tests): - slow-eval-longmemeval runs test/eval-longmemeval-e2e.slow.test.ts (~196s after the engine-sharing seam from the previous two commits). - slow-entity-resolve-perf runs test/entity-resolve-perf.slow.test.ts (~159s, single non-subdivisible perf test). The 60s default bun timeout is too tight for this file — bumped to 300000ms. scripts/test-shard.sh excludes both via -not -name clauses so the matrix sweep doesn't double-run them. Both new jobs wire into cache-write.needs and test-status.needs so CI gates on them. 3. actions/cache for ~/.bun/install/cache added to every job that runs bun install (test matrix, verify, serial-tests, slow-eval-longmemeval, slow-entity-resolve-perf). Keyed on bun.lock hash. Saves ~15s per job on cache hit; first-PR push pays full cost, subsequent runs hit cache. Total CI wallclock now bounded by max(matrix ~4.5min, slow-eval ~3.3min, slow-entity-resolve-perf ~2.6min) = ~4.5 min. The matrix is back to being the floor; no single test file dominates a shard. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore: v0.41.10.0 — CI wallclock 9min → 4.5min VERSION + package.json + CHANGELOG entry for the three preceding commits: feat(eval-longmemeval): RunOpts.engine seam for shared benchmark brain refactor(test): split eval-longmemeval slow tests + share engine across e2e half ci(test): bump matrix 6→10, dedicate two slow files, cache bun-install Net user-visible: CI 'Test' check finishes in ~4.5 min instead of ~9 min. Net contributor-visible: new RunOpts.engine seam on runEvalLongMemEval for benchmark suites that want to amortize PGLite cold-create across many calls. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(test): quarantine hybrid-meta + schema-pack-load-active to serial The 6→10 matrix shard bump in this branch re-shuffled file distribution across shard processes. Two pre-existing tests with hidden cross-file state dependencies surfaced as failures in CI run #77779498812/13: - test/hybrid-meta.test.ts shard 7: gateway state (configured by some other test in the same shard process) survived past the test's `delete process.env.OPENAI_API_KEY` call, so the early-return for expansion didn't fire and `expansion_applied` stayed true. - test/schema-pack-load-active.test.ts shard 8: the schema-pack module's test-injected locator state was left behind by an earlier file, so `loadActivePack` with the default config didn't fall through to the bundled gbrain-base path. Both files pass cleanly solo (verified). The pollution sources are unidentified — bun's reporter only printed 14 of 71 file headers per shard log, hiding the polluters. Rather than spelunk for the source, rename both files to *.serial.test.ts. The serial pass runs them at --max-concurrency=1 in a process that doesn't share state with the parallel matrix shards. Same-wave bookkeeping: - scripts/check-test-isolation.allowlist: drop test/hybrid-meta.test.ts entry (file is now serial, no longer R1-eligible). - scripts/test-weights.json: rename both weight entries to match the new filenames so future matrix LPT runs don't fall back to median. Companion to a7d029d0/2e1c269e/5a749acb of this branch. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
715 lines
29 KiB
JSON
715 lines
29 KiB
JSON
{
|
|
"test/active-pack-wiring.test.ts": 3,
|
|
"test/admin-agents-spend.test.ts": 4995,
|
|
"test/admin-embed-spawn.serial.test.ts": 12792,
|
|
"test/agent-cli.test.ts": 2935,
|
|
"test/agent-runner.test.ts": 2,
|
|
"test/ai/adaptive-embed-batch.test.ts": 34,
|
|
"test/ai/build-gateway-config.test.ts": 0,
|
|
"test/ai/capabilities.test.ts": 3,
|
|
"test/ai/config-no-env-mutation.test.ts": 4,
|
|
"test/ai/dims-openai.test.ts": 4,
|
|
"test/ai/dims-zeroentropy.test.ts": 4,
|
|
"test/ai/embedQuery.test.ts": 8,
|
|
"test/ai/gateway-chat.test.ts": 8,
|
|
"test/ai/gateway-tool-loop.test.ts": 9,
|
|
"test/ai/gateway.test.ts": 444,
|
|
"test/ai/header-transport.serial.test.ts": 118,
|
|
"test/ai/no-batch-cap-suppression.serial.test.ts": 98,
|
|
"test/ai/recipe-azure-openai.test.ts": 7,
|
|
"test/ai/recipe-dashscope.test.ts": 5,
|
|
"test/ai/recipe-llama-server.test.ts": 0,
|
|
"test/ai/recipe-minimax.test.ts": 1,
|
|
"test/ai/recipe-openrouter.test.ts": 1,
|
|
"test/ai/recipe-zhipu.test.ts": 3,
|
|
"test/ai/recipes-existing-regression.test.ts": 5,
|
|
"test/ai/rerank.test.ts": 16,
|
|
"test/ai/schema-templating.test.ts": 4,
|
|
"test/ai/silent-drop-regression.test.ts": 9,
|
|
"test/ai/voyage-code-3-recipe.test.ts": 3,
|
|
"test/ai/zeroentropy-compat-fetch.test.ts": 16,
|
|
"test/ai/zeroentropy-recipe.test.ts": 1,
|
|
"test/anomalies.test.ts": 1,
|
|
"test/anthropic-model-ids.test.ts": 3,
|
|
"test/apply-migrations-pglite-spawn.serial.test.ts": 18874,
|
|
"test/apply-migrations.test.ts": 5,
|
|
"test/archive-crawler-config.test.ts": 26,
|
|
"test/artifact-abstraction.test.ts": 2,
|
|
"test/asymmetric-encoding-contract.test.ts": 1,
|
|
"test/audit-slug-fallback.serial.test.ts": 98,
|
|
"test/audit-synopsis.serial.test.ts": 99,
|
|
"test/audit/audit-writer.test.ts": 9,
|
|
"test/audit/content-sanity-audit.test.ts": 6,
|
|
"test/auto-think-phase.test.ts": 3251,
|
|
"test/autopilot-cycle-failure-classification.test.ts": 4,
|
|
"test/autopilot-cycle-handler.test.ts": 3039,
|
|
"test/autopilot-fanout-wiring.test.ts": 3,
|
|
"test/autopilot-fanout.test.ts": 24,
|
|
"test/autopilot-install.test.ts": 5,
|
|
"test/autopilot-lock-path.test.ts": 13,
|
|
"test/autopilot-nightly-probe-wiring.test.ts": 2,
|
|
"test/autopilot-reconnect-classifier.test.ts": 5,
|
|
"test/autopilot-resolve-cli.test.ts": 11,
|
|
"test/autopilot-supervisor-wiring.test.ts": 10,
|
|
"test/backfill-base.test.ts": 2,
|
|
"test/backfill-concurrency-clamp.serial.test.ts": 103,
|
|
"test/backlinks.test.ts": 23,
|
|
"test/backoff.test.ts": 8,
|
|
"test/balanced-reranker-default.test.ts": 19,
|
|
"test/batch-projection.test.ts": 1,
|
|
"test/bench-publish.test.ts": 8,
|
|
"test/bench/baseline-file.test.ts": 2,
|
|
"test/bench/correctness-gate.test.ts": 5,
|
|
"test/bench/qrels-file.test.ts": 13,
|
|
"test/book-mirror.test.ts": 431,
|
|
"test/bootstrap.test.ts": 18481,
|
|
"test/brain-allowlist.test.ts": 3257,
|
|
"test/brain-registry.serial.test.ts": 104,
|
|
"test/brain-resolver.test.ts": 125,
|
|
"test/brain-score-breakdown.test.ts": 3087,
|
|
"test/brain-score-recommendations.test.ts": 23,
|
|
"test/brain-writer-partial-scan.test.ts": 4335,
|
|
"test/brain-writer-walk-prune.test.ts": 7,
|
|
"test/brain-writer.test.ts": 3949,
|
|
"test/brainstorm-timeout.test.ts": 45,
|
|
"test/brainstorm/checkpoint.serial.test.ts": 136,
|
|
"test/brainstorm/cost-guardrails.test.ts": 13,
|
|
"test/brainstorm/distance.test.ts": 26,
|
|
"test/brainstorm/eval-brainstorm.test.ts": 13,
|
|
"test/brainstorm/lsd-mode-skip.test.ts": 2,
|
|
"test/budget-meter.test.ts": 26,
|
|
"test/budget-tracker.test.ts": 3265,
|
|
"test/build-llms.test.ts": 11,
|
|
"test/calibration-cli.test.ts": 13,
|
|
"test/calibration-profile.test.ts": 7,
|
|
"test/candidate-audit.test.ts": 9,
|
|
"test/capture-build-content.test.ts": 18,
|
|
"test/capture-runcapture.test.ts": 8,
|
|
"test/cathedral-ii-brainbench.test.ts": 9162,
|
|
"test/check-resolvable-cli.test.ts": 3600,
|
|
"test/check-resolvable.test.ts": 40,
|
|
"test/check-system-of-record.test.ts": 70,
|
|
"test/check-update.test.ts": 674,
|
|
"test/child-worker-supervisor.test.ts": 144,
|
|
"test/chunk-grain-fts.test.ts": 70996,
|
|
"test/chunker-timeout.test.ts": 27,
|
|
"test/chunker-version-gate.test.ts": 6,
|
|
"test/chunkers/code.test.ts": 129,
|
|
"test/chunkers/recursive.test.ts": 57,
|
|
"test/cjk.test.ts": 4,
|
|
"test/claw-test-cli.test.ts": 9,
|
|
"test/cli-args.test.ts": 15,
|
|
"test/cli-dispatch-thin-client.test.ts": 6027,
|
|
"test/cli-help-discoverability.test.ts": 1670,
|
|
"test/cli-multimodal-integration.test.ts": 26677,
|
|
"test/cli-options.test.ts": 1658,
|
|
"test/cli-pty-runner.test.ts": 16,
|
|
"test/cli-query-image.test.ts": 56,
|
|
"test/cli.test.ts": 2633,
|
|
"test/code-callers-cli.test.ts": 2,
|
|
"test/code-def-refs.test.ts": 28662,
|
|
"test/code-edges.test.ts": 2884,
|
|
"test/code-intel/edge-densification.test.ts": 33,
|
|
"test/code-intel/eval-capture-graph.test.ts": 5,
|
|
"test/code-intel/recursive-walk.test.ts": 31107,
|
|
"test/code-intel/scope-walker-resolution.test.ts": 19,
|
|
"test/code-intel/traversal-cache.test.ts": 42036,
|
|
"test/code-retrieval-harness.test.ts": 4,
|
|
"test/commands-search.test.ts": 23985,
|
|
"test/commands/capture.test.ts": 42431,
|
|
"test/config-ensure-gitignore.test.ts": 7,
|
|
"test/config-env.test.ts": 6,
|
|
"test/config-set.test.ts": 17,
|
|
"test/config-unset.test.ts": 23831,
|
|
"test/config.test.ts": 6,
|
|
"test/connection-manager.serial.test.ts": 117,
|
|
"test/connection-resilience.test.ts": 29,
|
|
"test/console-prefix.test.ts": 5,
|
|
"test/consolidate-valid-until.test.ts": 2471,
|
|
"test/content-sanity-literals.test.ts": 2,
|
|
"test/content-sanity.test.ts": 5,
|
|
"test/context-engine.test.ts": 33,
|
|
"test/contextual-retrieval-doctor.serial.test.ts": 2755,
|
|
"test/contextual-retrieval-resolver.test.ts": 4,
|
|
"test/contextual-retrieval-service-pure.test.ts": 3,
|
|
"test/core/audit-week-file.serial.test.ts": 97,
|
|
"test/core/base-phase.test.ts": 9,
|
|
"test/core/cycle.serial.test.ts": 5563,
|
|
"test/core/diarize/payload-fitter-summarize.test.ts": 15,
|
|
"test/core/remediation-checkpoint.serial.test.ts": 129,
|
|
"test/cosine-rescore-column.test.ts": 3198,
|
|
"test/cross-brain-calibration.test.ts": 8,
|
|
"test/cross-modal-eval-aggregate.test.ts": 3,
|
|
"test/cross-modal-eval-cli.test.ts": 23,
|
|
"test/cross-modal-eval-json-repair.test.ts": 31,
|
|
"test/cross-modal-hybrid-integration.serial.test.ts": 3312,
|
|
"test/cross-modal-phase1.test.ts": 40,
|
|
"test/cross-modal-phase2.test.ts": 48,
|
|
"test/cycle-abort.test.ts": 108,
|
|
"test/cycle-consolidate.test.ts": 23952,
|
|
"test/cycle-last-full-cycle-at.test.ts": 3771,
|
|
"test/cycle-legacy-phases.test.ts": 4177,
|
|
"test/cycle-lock-per-source.test.ts": 9,
|
|
"test/cycle-pack-gating.test.ts": 5,
|
|
"test/cycle-patterns.test.ts": 2,
|
|
"test/cycle-pglite-lock-ordering.serial.test.ts": 2693,
|
|
"test/cycle-synthesize-chunker.test.ts": 21,
|
|
"test/cycle-synthesize-md-discovery.test.ts": 6,
|
|
"test/cycle-synthesize-slug-collection.test.ts": 3140,
|
|
"test/cycle-synthesize.test.ts": 17,
|
|
"test/cycle/extract-atoms-synthesize-concepts.test.ts": 60181,
|
|
"test/cycle/nightly-probe-adapters.test.ts": 6,
|
|
"test/data-research.test.ts": 17,
|
|
"test/db-lock-election.test.ts": 23346,
|
|
"test/db-lock-per-source.test.ts": 33460,
|
|
"test/db-lock-refresh.test.ts": 6,
|
|
"test/dedup.test.ts": 13,
|
|
"test/destructive-guard.test.ts": 6357,
|
|
"test/disk-walk.test.ts": 17,
|
|
"test/distribution-import-boundary.test.ts": 7,
|
|
"test/doctor-behavioral.test.ts": 5729,
|
|
"test/doctor-calibration-checks.test.ts": 5,
|
|
"test/doctor-child-orphans.test.ts": 4,
|
|
"test/doctor-cli-smoke.serial.test.ts": 4239,
|
|
"test/doctor-cycle-freshness.test.ts": 33963,
|
|
"test/doctor-cycle-phase-scope.test.ts": 7,
|
|
"test/doctor-federation-health.test.ts": 4021,
|
|
"test/doctor-fix.test.ts": 1301,
|
|
"test/doctor-frontmatter-partial.test.ts": 2,
|
|
"test/doctor-home-dir-in-worktree.test.ts": 194,
|
|
"test/doctor-minions-check.test.ts": 2697,
|
|
"test/doctor-remote.serial.test.ts": 210,
|
|
"test/doctor-report-remote.serial.test.ts": 2823,
|
|
"test/doctor-search-mode.test.ts": 3519,
|
|
"test/doctor-subagent-health.test.ts": 2972,
|
|
"test/doctor-v0_37_7_checks.test.ts": 2447,
|
|
"test/doctor-ze-checks.test.ts": 26042,
|
|
"test/doctor.test.ts": 46040,
|
|
"test/domain-aggregators.test.ts": 3512,
|
|
"test/dream-cli-flags.test.ts": 3,
|
|
"test/dream.test.ts": 26718,
|
|
"test/drift-watch.test.ts": 255,
|
|
"test/dry-fix.test.ts": 442,
|
|
"test/edge-extractor.test.ts": 252,
|
|
"test/effective-date.test.ts": 6,
|
|
"test/embed-backfill-submit.test.ts": 3099,
|
|
"test/embed-multimodal-batching.test.ts": 11,
|
|
"test/embed-skip.test.ts": 5,
|
|
"test/embed-stale.test.ts": 34959,
|
|
"test/embed.serial.test.ts": 2312,
|
|
"test/embedding-context.test.ts": 6,
|
|
"test/embedding-dim-check.test.ts": 4174,
|
|
"test/embedding-pricing.test.ts": 3,
|
|
"test/emotional-weight.test.ts": 4,
|
|
"test/engine-factory.test.ts": 13,
|
|
"test/engine-find-trajectory.test.ts": 3351,
|
|
"test/engine-parity-event-type.test.ts": 3251,
|
|
"test/engine-upsertFile.test.ts": 3801,
|
|
"test/engine-weight-rounding-integration.test.ts": 2367,
|
|
"test/enrichable-pack.test.ts": 8,
|
|
"test/enrichment-service.test.ts": 4,
|
|
"test/enrichment.test.ts": 3498,
|
|
"test/entity-resolve-perf.slow.test.ts": 158667,
|
|
"test/entity-resolve.test.ts": 24029,
|
|
"test/error-classify.test.ts": 3,
|
|
"test/errors.test.ts": 18,
|
|
"test/eval-candidates.test.ts": 18453,
|
|
"test/eval-capture-scrub.test.ts": 1,
|
|
"test/eval-capture.test.ts": 6,
|
|
"test/eval-compare.test.ts": 36,
|
|
"test/eval-contradictions-auto-supersession.test.ts": 3,
|
|
"test/eval-contradictions-cache.test.ts": 4601,
|
|
"test/eval-contradictions-calibration-join.test.ts": 2,
|
|
"test/eval-contradictions-calibration.test.ts": 12,
|
|
"test/eval-contradictions-cost-prompt.test.ts": 4223,
|
|
"test/eval-contradictions-cost.test.ts": 16,
|
|
"test/eval-contradictions-cross-source.test.ts": 5,
|
|
"test/eval-contradictions-date-filter.test.ts": 5,
|
|
"test/eval-contradictions-engine.test.ts": 5226,
|
|
"test/eval-contradictions-fixture-redact.test.ts": 5,
|
|
"test/eval-contradictions-integrations.test.ts": 4067,
|
|
"test/eval-contradictions-judge-errors.test.ts": 3,
|
|
"test/eval-contradictions-judge.test.ts": 32,
|
|
"test/eval-contradictions-runner.test.ts": 5998,
|
|
"test/eval-contradictions-severity.test.ts": 5,
|
|
"test/eval-contradictions-trends.test.ts": 36220,
|
|
"test/eval-contradictions/no-valid-until-write.test.ts": 33,
|
|
"test/eval-cross-modal-batch.test.ts": 141,
|
|
"test/eval-export.test.ts": 2399,
|
|
"test/eval-gate.test.ts": 3884,
|
|
"test/eval-longmemeval-e2e.slow.test.ts": 196000,
|
|
"test/eval-longmemeval.slow.test.ts": 42000,
|
|
"test/eval-prune.test.ts": 18396,
|
|
"test/eval-replay-gate.test.ts": 34958,
|
|
"test/eval-replay-metadata-skip.test.ts": 3430,
|
|
"test/eval-replay.test.ts": 16,
|
|
"test/eval-run-all.test.ts": 17,
|
|
"test/eval-schema-authoring.test.ts": 4,
|
|
"test/eval-shared-json-repair-shim.test.ts": 6,
|
|
"test/eval-takes-quality-aggregate.test.ts": 32,
|
|
"test/eval-takes-quality-boundaries.test.ts": 3193,
|
|
"test/eval-takes-quality-cli.test.ts": 13,
|
|
"test/eval-takes-quality-pricing.test.ts": 2,
|
|
"test/eval-takes-quality-receipt-name.test.ts": 4,
|
|
"test/eval-takes-quality-receipt-write.test.ts": 3213,
|
|
"test/eval-takes-quality-regress.test.ts": 14,
|
|
"test/eval-takes-quality-replay.test.ts": 2890,
|
|
"test/eval-takes-quality-rubric.test.ts": 3,
|
|
"test/eval-takes-quality-runner.serial.test.ts": 2642,
|
|
"test/eval-takes-quality-trend.test.ts": 23553,
|
|
"test/eval-trajectory.test.ts": 3424,
|
|
"test/eval-v041_2-scaffolds.test.ts": 23,
|
|
"test/eval-whoknows.test.ts": 8,
|
|
"test/eval.test.ts": 2,
|
|
"test/exit-classification.test.ts": 4,
|
|
"test/expert-types-pack.test.ts": 60,
|
|
"test/extract-db.test.ts": 3200,
|
|
"test/extract-facts-phase.test.ts": 24617,
|
|
"test/extract-from-fence.test.ts": 6,
|
|
"test/extract-fs.test.ts": 2618,
|
|
"test/extract-incremental.test.ts": 4523,
|
|
"test/extract-source-aware.test.ts": 23970,
|
|
"test/extract-takes-holder-producer-seam.test.ts": 2469,
|
|
"test/extract-takes.test.ts": 3153,
|
|
"test/extract.test.ts": 24,
|
|
"test/extractable-pack.test.ts": 76,
|
|
"test/facts-absorb-log.test.ts": 3161,
|
|
"test/facts-anti-loop.test.ts": 2478,
|
|
"test/facts-backstop-gating.test.ts": 3278,
|
|
"test/facts-backstop-integration.test.ts": 23696,
|
|
"test/facts-backstop.test.ts": 3118,
|
|
"test/facts-canonicality.test.ts": 3218,
|
|
"test/facts-classify.test.ts": 3,
|
|
"test/facts-context-injection.serial.test.ts": 2703,
|
|
"test/facts-decay.test.ts": 19,
|
|
"test/facts-doctor-shape.test.ts": 3109,
|
|
"test/facts-eligibility.test.ts": 5,
|
|
"test/facts-engine.test.ts": 12954,
|
|
"test/facts-extract-silent-no-op.test.ts": 4,
|
|
"test/facts-extract-smoke.test.ts": 6,
|
|
"test/facts-extract.test.ts": 1,
|
|
"test/facts-fence-typed.test.ts": 4,
|
|
"test/facts-fence.test.ts": 5,
|
|
"test/facts-mcp-allowlist.serial.test.ts": 2633,
|
|
"test/facts-meta-cache.test.ts": 3117,
|
|
"test/facts-migration-dim.test.ts": 3329,
|
|
"test/facts-multi-tenant.test.ts": 23425,
|
|
"test/facts-queue.test.ts": 604,
|
|
"test/facts-recall-render.test.ts": 2968,
|
|
"test/facts-separation-pglite.test.ts": 3260,
|
|
"test/facts-visibility.test.ts": 2917,
|
|
"test/fail-improve.test.ts": 132,
|
|
"test/feature-flags.test.ts": 3864,
|
|
"test/features.test.ts": 5,
|
|
"test/fence-extraction.test.ts": 3427,
|
|
"test/fence-write.test.ts": 2335,
|
|
"test/file-migration.test.ts": 4,
|
|
"test/file-resolver.test.ts": 24,
|
|
"test/file-upload-security.test.ts": 3,
|
|
"test/files.test.ts": 6,
|
|
"test/filing-audit.test.ts": 9,
|
|
"test/find-experts-op.test.ts": 3125,
|
|
"test/fix-wave-structural.test.ts": 6,
|
|
"test/founder-scorecard.test.ts": 9,
|
|
"test/friction-cli.test.ts": 21,
|
|
"test/friction.test.ts": 29,
|
|
"test/frontmatter-cli.test.ts": 2936,
|
|
"test/frontmatter-inference.test.ts": 10,
|
|
"test/frontmatter-install-hook.test.ts": 56,
|
|
"test/fuzz/filesystem-validators.test.ts": 87,
|
|
"test/fuzz/mixed-validators.test.ts": 279,
|
|
"test/fuzz/pure-validators.test.ts": 220,
|
|
"test/gateway-embed-model-override.test.ts": 1,
|
|
"test/gbrain-home-isolation.test.ts": 7,
|
|
"test/get-brain-identity.test.ts": 36332,
|
|
"test/git-remote.test.ts": 365,
|
|
"test/grade-takes-ensemble.test.ts": 30,
|
|
"test/grade-takes.test.ts": 6,
|
|
"test/graph-query.test.ts": 3163,
|
|
"test/gstack-learnings-coupling.test.ts": 15,
|
|
"test/handlers-embed-backfill.test.ts": 2978,
|
|
"test/handlers.test.ts": 25084,
|
|
"test/helpers/schema-diff-indexes.test.ts": 4,
|
|
"test/helpers/schema-diff.test.ts": 2,
|
|
"test/helpers/with-env.test.ts": 19,
|
|
"test/http-transport.test.ts": 100,
|
|
"test/hybrid-meta.serial.test.ts": 3314,
|
|
"test/hybrid-search-lite.serial.test.ts": 2849,
|
|
"test/import-checkpoint.test.ts": 5,
|
|
"test/import-file-content-sanity.test.ts": 3363,
|
|
"test/import-file.test.ts": 87,
|
|
"test/import-image-file.test.ts": 3539,
|
|
"test/import-resume.test.ts": 2811,
|
|
"test/import-source-id.test.ts": 3149,
|
|
"test/import-walker.test.ts": 1,
|
|
"test/incremental-chunking.test.ts": 3212,
|
|
"test/infer-type-pack.test.ts": 16,
|
|
"test/ingestion/daemon.test.ts": 39,
|
|
"test/ingestion/dedup.test.ts": 5,
|
|
"test/ingestion/gstack-learnings.test.ts": 8,
|
|
"test/ingestion/ingest-capture.test.ts": 53213,
|
|
"test/ingestion/markdown-greenfield.test.ts": 13,
|
|
"test/ingestion/migration-mode.test.ts": 8,
|
|
"test/ingestion/put-page-write-through.test.ts": 38741,
|
|
"test/ingestion/skillpack-load.test.ts": 15,
|
|
"test/ingestion/sources/file-watcher.test.ts": 1007,
|
|
"test/ingestion/sources/inbox-folder.test.ts": 518,
|
|
"test/ingestion/test-harness.test.ts": 68,
|
|
"test/ingestion/types.test.ts": 9,
|
|
"test/init-env-detection.test.ts": 11,
|
|
"test/init-mcp-only.test.ts": 4380,
|
|
"test/init-migrate-only.test.ts": 7098,
|
|
"test/init-mode-picker.test.ts": 2440,
|
|
"test/init-provider-picker.test.ts": 2,
|
|
"test/insert-facts-batch.test.ts": 2976,
|
|
"test/integrations-install.test.ts": 183,
|
|
"test/integrations.test.ts": 24,
|
|
"test/integrity.test.ts": 2678,
|
|
"test/intent-weights.test.ts": 4,
|
|
"test/jobs-watch-snapshot.test.ts": 12,
|
|
"test/language-manifest.test.ts": 17,
|
|
"test/lease-cap-controller.test.ts": 3161,
|
|
"test/lens-pack-manifests.test.ts": 13,
|
|
"test/levenshtein.test.ts": 3,
|
|
"test/link-extraction-code-refs.test.ts": 4,
|
|
"test/link-extraction.test.ts": 25,
|
|
"test/link-inference-pack.test.ts": 46,
|
|
"test/lint-content-sanity.test.ts": 36,
|
|
"test/lint-frontmatter.test.ts": 15,
|
|
"test/lint.test.ts": 1,
|
|
"test/list-all-sources.test.ts": 39599,
|
|
"test/llm-intent-escalation.test.ts": 6,
|
|
"test/llm-intent-hybrid-integration.serial.test.ts": 3246,
|
|
"test/loadConfig-merge.test.ts": 4,
|
|
"test/longmemeval-extract.test.ts": 2991,
|
|
"test/longmemeval-intent.test.ts": 3,
|
|
"test/longmemeval-sanitize.test.ts": 5,
|
|
"test/longmemeval-trajectory-routing.test.ts": 12926,
|
|
"test/markdown-serializer.test.ts": 8,
|
|
"test/markdown-validation.test.ts": 3,
|
|
"test/markdown.test.ts": 27,
|
|
"test/mcp-client-hardening.test.ts": 305,
|
|
"test/mcp-client.test.ts": 65,
|
|
"test/mcp-dispatch-summarize.test.ts": 6,
|
|
"test/mcp-eval-capture.test.ts": 25246,
|
|
"test/mcp-tool-defs.test.ts": 15,
|
|
"test/metric-glossary.test.ts": 16,
|
|
"test/migrate-extensions.test.ts": 3,
|
|
"test/migrate.test.ts": 102260,
|
|
"test/migration-orchestrator-v0_21_0.test.ts": 7,
|
|
"test/migration-orchestrator-v0_31_0.test.ts": 12960,
|
|
"test/migration-resume.test.ts": 9,
|
|
"test/migration-v0-29-1.serial.test.ts": 3273,
|
|
"test/migrations-cjk-wave.test.ts": 3280,
|
|
"test/migrations-registry.test.ts": 3,
|
|
"test/migrations-v0_11_0.test.ts": 14,
|
|
"test/migrations-v0_12_0.test.ts": 6,
|
|
"test/migrations-v0_12_2.test.ts": 3,
|
|
"test/migrations-v0_13_0.test.ts": 1,
|
|
"test/migrations-v0_13_1.test.ts": 23,
|
|
"test/migrations-v0_14_0.test.ts": 20,
|
|
"test/migrations-v0_16_0.test.ts": 1,
|
|
"test/migrations-v0_19_0.test.ts": 20826,
|
|
"test/migrations-v0_21_0.test.ts": 2,
|
|
"test/migrations-v0_22_4.test.ts": 1,
|
|
"test/migrations-v0_27_1.test.ts": 3248,
|
|
"test/migrations-v0_32_2.test.ts": 2510,
|
|
"test/migrations-v48-takes-weight-backfill.test.ts": 2501,
|
|
"test/migrations-v94.test.ts": 32374,
|
|
"test/minions-lease-full-retry.test.ts": 3031,
|
|
"test/minions-quiet-hours.test.ts": 3341,
|
|
"test/minions-shell-inherit.test.ts": 24,
|
|
"test/minions-shell-redact.test.ts": 19,
|
|
"test/minions-shell-validate.test.ts": 7,
|
|
"test/minions-shell.test.ts": 3268,
|
|
"test/minions.test.ts": 15231,
|
|
"test/minions/agent-audit.test.ts": 9,
|
|
"test/minions/budget-meter.test.ts": 44657,
|
|
"test/mode-switch-ux.test.ts": 3698,
|
|
"test/model-config.serial.test.ts": 101,
|
|
"test/mounts-cache.test.ts": 21,
|
|
"test/mounts-cli.test.ts": 20,
|
|
"test/multi-source-drift.test.ts": 2479,
|
|
"test/multi-source-integration.test.ts": 3120,
|
|
"test/nightly-quality-probe.test.ts": 50,
|
|
"test/notability-eval.test.ts": 36,
|
|
"test/nudge.test.ts": 16,
|
|
"test/oauth-confidential-client.test.ts": 3221,
|
|
"test/oauth-scope-probe.test.ts": 112,
|
|
"test/oauth.test.ts": 2151,
|
|
"test/op-checkpoint.test.ts": 5333,
|
|
"test/openai-compat-multimodal.test.ts": 6,
|
|
"test/operation-context-sourceid-required.test.ts": 10,
|
|
"test/operations-allow-list.test.ts": 4,
|
|
"test/operations-descriptions.test.ts": 11,
|
|
"test/operations-embedding-column.test.ts": 30,
|
|
"test/operations-find-trajectory.test.ts": 3419,
|
|
"test/operations-schema-pack.test.ts": 5842,
|
|
"test/operations-trust-boundary.test.ts": 43020,
|
|
"test/orphans.test.ts": 16921,
|
|
"test/page-lock.test.ts": 266,
|
|
"test/page-type-exhaustive.test.ts": 17,
|
|
"test/pages-soft-delete.test.ts": 15271,
|
|
"test/parallel.test.ts": 108,
|
|
"test/parent-scope.test.ts": 23673,
|
|
"test/parity.test.ts": 16,
|
|
"test/performfullsync-source-id.test.ts": 2869,
|
|
"test/pglite-engine.test.ts": 33476,
|
|
"test/pglite-lock.test.ts": 1007,
|
|
"test/phantom-redirect-engine-parity.test.ts": 3605,
|
|
"test/phantom-redirect-per-source-lock.test.ts": 3,
|
|
"test/phantom-redirect.test.ts": 7303,
|
|
"test/phase-scope-coverage.test.ts": 3,
|
|
"test/plugin-loader.test.ts": 12,
|
|
"test/post-install-advisory.test.ts": 15,
|
|
"test/post-write-lint.test.ts": 4180,
|
|
"test/postgres-engine.test.ts": 32,
|
|
"test/preferences.test.ts": 14,
|
|
"test/privacy-script-wired.test.ts": 3,
|
|
"test/privacy-strip-and-forget.test.ts": 2762,
|
|
"test/progress-tail.test.ts": 3,
|
|
"test/progress.test.ts": 215,
|
|
"test/propose-takes.test.ts": 15,
|
|
"test/providers.test.ts": 17,
|
|
"test/public-exports.test.ts": 35,
|
|
"test/publish.test.ts": 128,
|
|
"test/put-page-namespace.test.ts": 4,
|
|
"test/put-page-provenance.test.ts": 24839,
|
|
"test/qualified-names.test.ts": 4,
|
|
"test/query-cache-gate.test.ts": 31003,
|
|
"test/query-cache-knobs-hash.test.ts": 3122,
|
|
"test/query-cache.test.ts": 2565,
|
|
"test/query-image-flag.serial.test.ts": 2965,
|
|
"test/query-intent-legacy.test.ts": 8,
|
|
"test/query-intent.test.ts": 6,
|
|
"test/query-sanitization.test.ts": 4,
|
|
"test/queue-child-done.test.ts": 2548,
|
|
"test/rate-leases-uncapped.test.ts": 2884,
|
|
"test/rate-leases.test.ts": 2959,
|
|
"test/readme-hero-anchors.test.ts": 0,
|
|
"test/recall-extensions.test.ts": 4668,
|
|
"test/recall-footer.test.ts": 17,
|
|
"test/recall-rollup.test.ts": 84,
|
|
"test/recency-decay.test.ts": 5,
|
|
"test/recompute-emotional-weight.test.ts": 2,
|
|
"test/reconcile-links.serial.test.ts": 2702,
|
|
"test/regression-strict-source-id.test.ts": 4,
|
|
"test/regression-v0_16_4.test.ts": 28,
|
|
"test/regressions/gbrain-base-equivalence.test.ts": 12,
|
|
"test/regressions/v0.36.1.0-iron-rule.test.ts": 3,
|
|
"test/regressions/v0_36_frontier_cap.test.ts": 27151,
|
|
"test/regressions/v0_40_2_0-trajectory-backcompat.test.ts": 27576,
|
|
"test/reindex-code-max-cost.serial.test.ts": 2636,
|
|
"test/reindex-code-model-source.serial.test.ts": 2782,
|
|
"test/reindex-code-nudge.serial.test.ts": 2710,
|
|
"test/reindex-code.test.ts": 38123,
|
|
"test/reindex-frontmatter-connect.test.ts": 18383,
|
|
"test/reindex.test.ts": 19003,
|
|
"test/remediation-step.test.ts": 25,
|
|
"test/repair-jsonb.test.ts": 3,
|
|
"test/repo-root.test.ts": 14,
|
|
"test/report.test.ts": 2,
|
|
"test/repos-alias.test.ts": 3163,
|
|
"test/rerank-audit.test.ts": 24,
|
|
"test/resolve-prepare.test.ts": 11,
|
|
"test/resolver-merge.test.ts": 5,
|
|
"test/resolver.test.ts": 58,
|
|
"test/resolvers.test.ts": 4130,
|
|
"test/restart-sweep.test.ts": 42,
|
|
"test/retrieval-upgrade-planner.test.ts": 8375,
|
|
"test/retry-matcher.test.ts": 2,
|
|
"test/routing-eval-cli.test.ts": 1118,
|
|
"test/routing-eval.test.ts": 34,
|
|
"test/salience.test.ts": 2,
|
|
"test/scenarios.test.ts": 29,
|
|
"test/schema-bootstrap-coverage.test.ts": 6449,
|
|
"test/schema-cli-contract.test.ts": 4,
|
|
"test/schema-cli.test.ts": 3375,
|
|
"test/schema-pack-best-effort.test.ts": 9,
|
|
"test/schema-pack-lint-rules.test.ts": 11,
|
|
"test/schema-pack-load-active.serial.test.ts": 43,
|
|
"test/schema-pack-loader.test.ts": 10,
|
|
"test/schema-pack-manifest-v041_2.test.ts": 17,
|
|
"test/schema-pack-mutate-audit.test.ts": 8,
|
|
"test/schema-pack-mutate.test.ts": 80,
|
|
"test/schema-pack-pack-lock.test.ts": 65,
|
|
"test/schema-pack-query-cache-invalidator.test.ts": 22822,
|
|
"test/schema-pack-registry-reload.test.ts": 40,
|
|
"test/schema-pack-registry.test.ts": 52,
|
|
"test/schema-pack-stats.test.ts": 43032,
|
|
"test/schema-pack-sync.test.ts": 5580,
|
|
"test/schema-pack-trust-boundary.test.ts": 8,
|
|
"test/schema-verify.test.ts": 7,
|
|
"test/scope-agent-isolation.test.ts": 30,
|
|
"test/scope-normalize.test.ts": 24,
|
|
"test/scope.test.ts": 5,
|
|
"test/scripts/check-proposal-pii.test.ts": 511,
|
|
"test/scripts/check-test-isolation.test.ts": 223,
|
|
"test/scripts/run-unit-parallel.test.ts": 427,
|
|
"test/scripts/run-unit-shard.test.ts": 131,
|
|
"test/scripts/serial-files.test.ts": 41,
|
|
"test/scripts/test-shard.slow.test.ts": 32161,
|
|
"test/search-by-image-op.test.ts": 3869,
|
|
"test/search-image-column.test.ts": 30089,
|
|
"test/search-lang-symbol-kind.test.ts": 2556,
|
|
"test/search-limit.test.ts": 2909,
|
|
"test/search-mode.test.ts": 8,
|
|
"test/search-telemetry.test.ts": 25699,
|
|
"test/search-types-filter.test.ts": 3023,
|
|
"test/search.test.ts": 9,
|
|
"test/search/attribution-stamping.test.ts": 5,
|
|
"test/search/embedding-column.serial.test.ts": 109,
|
|
"test/search/explain-formatter.test.ts": 13,
|
|
"test/search/graph-signals-wire-integration.test.ts": 28358,
|
|
"test/search/graph-signals.test.ts": 14,
|
|
"test/search/hybrid-reranker-integration.serial.test.ts": 2905,
|
|
"test/search/knobs-hash-reranker.test.ts": 5,
|
|
"test/search/rerank.test.ts": 23,
|
|
"test/search/search-stats-graph-signals.test.ts": 23476,
|
|
"test/seed-pglite.test.ts": 12966,
|
|
"test/select-e2e.test.ts": 11,
|
|
"test/self-fix.test.ts": 28842,
|
|
"test/serve-http-bootstrap-token.test.ts": 2,
|
|
"test/serve-http-health.test.ts": 301,
|
|
"test/serve-stdio-lifecycle.test.ts": 1252,
|
|
"test/setup-branching.test.ts": 15,
|
|
"test/skill-brain-first.test.ts": 9,
|
|
"test/skill-manifest.test.ts": 25,
|
|
"test/skillify-check.test.ts": 554,
|
|
"test/skillify-scaffold.test.ts": 31,
|
|
"test/skillpack-apply-hunks.test.ts": 19,
|
|
"test/skillpack-bootstrap-display.test.ts": 4,
|
|
"test/skillpack-changed-since-version.test.ts": 361,
|
|
"test/skillpack-check.test.ts": 4691,
|
|
"test/skillpack-copy.test.ts": 11,
|
|
"test/skillpack-endorse.test.ts": 114,
|
|
"test/skillpack-frontmatter-sources.test.ts": 10,
|
|
"test/skillpack-harvest-lint.test.ts": 5,
|
|
"test/skillpack-harvest.test.ts": 35,
|
|
"test/skillpack-init-pack.test.ts": 50,
|
|
"test/skillpack-install.test.ts": 51,
|
|
"test/skillpack-manifest-v1.test.ts": 4,
|
|
"test/skillpack-migrate-fence.test.ts": 10,
|
|
"test/skillpack-reference-apply.test.ts": 13,
|
|
"test/skillpack-reference-pack-is-ten.test.ts": 14,
|
|
"test/skillpack-reference.test.ts": 29,
|
|
"test/skillpack-registry-client.test.ts": 27,
|
|
"test/skillpack-registry-schema.test.ts": 13,
|
|
"test/skillpack-remote-source.test.ts": 65,
|
|
"test/skillpack-rubric-doctor.test.ts": 45,
|
|
"test/skillpack-scaffold-third-party.test.ts": 17,
|
|
"test/skillpack-scaffold.test.ts": 44,
|
|
"test/skillpack-scrub-legacy.test.ts": 51,
|
|
"test/skillpack-state.test.ts": 30,
|
|
"test/skillpack-tarball.test.ts": 132,
|
|
"test/skillpack-trust-prompt.test.ts": 9,
|
|
"test/skills-conformance.test.ts": 25,
|
|
"test/slug-validation.test.ts": 12,
|
|
"test/sort-newest-first.test.ts": 120,
|
|
"test/source-config-redact.test.ts": 1,
|
|
"test/source-health.test.ts": 2940,
|
|
"test/source-id-routing.test.ts": 3687,
|
|
"test/source-id-tx-regression.test.ts": 3200,
|
|
"test/source-id.test.ts": 4,
|
|
"test/source-resolver-silent-fallback.test.ts": 40514,
|
|
"test/source-resolver-with-tier.test.ts": 1,
|
|
"test/source-resolver.test.ts": 27,
|
|
"test/sources-load.test.ts": 4120,
|
|
"test/sources-mcp.test.ts": 41488,
|
|
"test/sources-ops.test.ts": 4235,
|
|
"test/sources-resync-recovery.test.ts": 40765,
|
|
"test/sources-set-cr-mode.test.ts": 37772,
|
|
"test/sources-webhook.test.ts": 20,
|
|
"test/sources.test.ts": 11,
|
|
"test/spawn-helpers.test.ts": 18,
|
|
"test/sql-query.test.ts": 2327,
|
|
"test/sql-ranking.test.ts": 17,
|
|
"test/ssrf-validate.test.ts": 6,
|
|
"test/storage-backfill.test.ts": 4,
|
|
"test/storage-config.test.ts": 8,
|
|
"test/storage-export.test.ts": 3170,
|
|
"test/storage-pglite.test.ts": 23978,
|
|
"test/storage-status.test.ts": 12,
|
|
"test/storage-sync.test.ts": 27,
|
|
"test/storage.test.ts": 146,
|
|
"test/stub-guard-audit.test.ts": 27,
|
|
"test/subagent-aggregator.test.ts": 5,
|
|
"test/subagent-audit.test.ts": 29,
|
|
"test/subagent-handler.test.ts": 3178,
|
|
"test/subagent-prompt-too-long.test.ts": 17,
|
|
"test/subagent-transcript.test.ts": 3276,
|
|
"test/subagent-v1-v2-shim.test.ts": 4830,
|
|
"test/submit-agent.test.ts": 4992,
|
|
"test/supabase-admin.test.ts": 0,
|
|
"test/supervisor-audit.test.ts": 8,
|
|
"test/supervisor-tini.test.ts": 1,
|
|
"test/supervisor.test.ts": 326,
|
|
"test/svg-renderer.test.ts": 7,
|
|
"test/sync-all-parallel.test.ts": 6,
|
|
"test/sync-classifier-widening.test.ts": 4,
|
|
"test/sync-concurrency.test.ts": 6,
|
|
"test/sync-cost-preview.test.ts": 115,
|
|
"test/sync-failures.test.ts": 18,
|
|
"test/sync-parallel.test.ts": 22640,
|
|
"test/sync-strategy.test.ts": 15,
|
|
"test/sync-trigger-cli.test.ts": 3100,
|
|
"test/sync-walker-submodule.test.ts": 5,
|
|
"test/sync-walker-symlink.test.ts": 12,
|
|
"test/sync.test.ts": 5841,
|
|
"test/synth-enabled-default.test.ts": 3,
|
|
"test/system-prompt.test.ts": 8,
|
|
"test/take-forecast.test.ts": 7,
|
|
"test/takes-engine.test.ts": 3302,
|
|
"test/takes-fence-read-ops.serial.test.ts": 2720,
|
|
"test/takes-fence.test.ts": 132,
|
|
"test/takes-holder-semantics.test.ts": 5,
|
|
"test/takes-holder-validation.test.ts": 13,
|
|
"test/takes-mcp-allowlist.serial.test.ts": 2721,
|
|
"test/takes-resolution.test.ts": 5,
|
|
"test/takes-weight-rounding.test.ts": 6,
|
|
"test/thin-client-routing-audit.test.ts": 5,
|
|
"test/thin-client-upgrade-prompt.test.ts": 23,
|
|
"test/think-ab.test.ts": 18,
|
|
"test/think-entity-extract.test.ts": 4,
|
|
"test/think-gateway-adapter.test.ts": 33,
|
|
"test/think-intent.test.ts": 8,
|
|
"test/think-pipeline.serial.test.ts": 2723,
|
|
"test/think-sanitize-trajectory.test.ts": 7,
|
|
"test/think-trajectory-injection.test.ts": 3346,
|
|
"test/think-with-calibration.test.ts": 3,
|
|
"test/timing-safe.test.ts": 17,
|
|
"test/token-budget.test.ts": 3,
|
|
"test/trajectory-format.test.ts": 4,
|
|
"test/transcript-capture.test.ts": 246,
|
|
"test/transcription.test.ts": 20,
|
|
"test/transcripts.test.ts": 20,
|
|
"test/traverse-graph-dedup.test.ts": 2933,
|
|
"test/trust-boundary-contract.test.ts": 24,
|
|
"test/two-pass.test.ts": 3137,
|
|
"test/undo-wave.test.ts": 5,
|
|
"test/unified-multimodal.serial.test.ts": 3286,
|
|
"test/upgrade-checkpoint.serial.test.ts": 109,
|
|
"test/upgrade-reembed-prompt.test.ts": 3219,
|
|
"test/upgrade-reference-sweep.test.ts": 56,
|
|
"test/upgrade.serial.test.ts": 723,
|
|
"test/url-redact.test.ts": 2,
|
|
"test/utils.test.ts": 5,
|
|
"test/v0_29-tool-surfaces.test.ts": 4,
|
|
"test/v0_37_fix_wave.serial.test.ts": 211,
|
|
"test/v81-v82-smoke.test.ts": 3160,
|
|
"test/vector-index-lifecycle.test.ts": 5,
|
|
"test/voice-gate.test.ts": 9,
|
|
"test/voyage-multimodal.test.ts": 22,
|
|
"test/voyage-response-cap.test.ts": 1,
|
|
"test/wait-for-completion.test.ts": 3626,
|
|
"test/whoami.test.ts": 3,
|
|
"test/whoknows-doctor.test.ts": 70,
|
|
"test/whoknows.test.ts": 3,
|
|
"test/worker-rss.test.ts": 3,
|
|
"test/worker-shutdown-disconnect.test.ts": 3260,
|
|
"test/writer.test.ts": 37365,
|
|
"test/yaml-lite.test.ts": 9,
|
|
"test/ze-switch-cli.test.ts": 4227,
|
|
"test/zombie-reap.test.ts": 3
|
|
}
|