Problem
The test CodeEvaluator > works with defineCodeJudge-based code judge in packages/core/test/evaluation/code-evaluator-file-backed.test.ts passes when run individually but fails when run as part of the full test suite.
This is a test isolation issue — some shared state from other tests affects this test's outcome.
Reproduction
# Passes individually:
bun test packages/core/test/evaluation/code-evaluator-file-backed.test.ts
# Fails in full suite:
bun test
Expected Behavior
The test should pass reliably regardless of execution order or which other tests run alongside it.
Likely Cause
Test isolation issue — possibly shared module state, global mocks, or file system side effects from other tests leaking into this one.
Acceptance Signals
Related
Discovered during #431 / PR #436 implementation (855/856 tests passing, this was the 1 pre-existing failure).
Problem
The test
CodeEvaluator > works with defineCodeJudge-based code judgeinpackages/core/test/evaluation/code-evaluator-file-backed.test.tspasses when run individually but fails when run as part of the full test suite.This is a test isolation issue — some shared state from other tests affects this test's outcome.
Reproduction
Expected Behavior
The test should pass reliably regardless of execution order or which other tests run alongside it.
Likely Cause
Test isolation issue — possibly shared module state, global mocks, or file system side effects from other tests leaking into this one.
Acceptance Signals
bun test) across multiple runsRelated
Discovered during #431 / PR #436 implementation (855/856 tests passing, this was the 1 pre-existing failure).