diff --git a/packages/engine/vitest.config.ts b/packages/engine/vitest.config.ts index 149f0f52be..3478d16eda 100644 --- a/packages/engine/vitest.config.ts +++ b/packages/engine/vitest.config.ts @@ -95,7 +95,6 @@ export default defineConfig({ include: ["src/**/*.test.ts"], exclude: [ "src/__tests__/reliability-interactions/**/*.test.ts", - "src/__tests__/self-healing-db-corruption.test.ts", // Real-git heavy files run in the engine-slow project so local // `pnpm test` stays snappy. CI picks them up via `test:slow` // / `test:all` invoked from the root `test:full` script. diff --git a/scripts/lib/test-quarantine.json b/scripts/lib/test-quarantine.json index 06b4f106dc..39eac9c428 100644 --- a/scripts/lib/test-quarantine.json +++ b/scripts/lib/test-quarantine.json @@ -1,10 +1,4 @@ { "$comment": "Flaky-test quarantine ledger (deletion ratchet — see AGENTS.md 'Flaky tests: quarantine on sight' and docs/testing.md 'Quarantine ledger and the deletion ratchet'). A test observed failing without a corresponding real bug is quarantined ON SIGHT: add an entry here AND a matching one-line `exclude` entry in that package's vitest config, in the same commit. Every entry needs a non-empty `reason` (link the failing run) and a `quarantinedAt` date — the entry expires 14 days later, at which point the test file is DELETED unless someone rescues it with evidence it catches real regressions plus a root-cause fix (never appeasement). There is deliberately no loader module and no automation around this file: it is a dated record, the vitest config exclude is the mechanism, and the sweep is policy executed by whoever touches the suite.", - "entries": [ - { - "file": "packages/engine/src/__tests__/self-healing-db-corruption.test.ts", - "reason": "FN-6195: observed flake when runMaintenance() scanned the real OS tmpdir and picked up stale fusion-ai-merge-* worktrees from unrelated tests, adding unexpected audit calls. Failing run: Fusion task FN-6195 agent verification log, 2026-06-10.", - "quarantinedAt": "2026-06-10" - } - ] + "entries": [] }