From 12a4f162570b98428bdffe2ad3cb8c424c535846 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Thu, 13 Aug 2026 06:18:03 +0000 Subject: [PATCH] fix(recovery): import missing-state cap tests with .js path tsc compiles this unit file and rejects a .ts import unless allowImportingTsExtensions is on. Match sibling recovery tests so Typecheck + Build can pass. SPC-21314 Co-Authored-By: Paperclip --- .../services/recovery/successful-run-missing-state-cap.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/services/recovery/successful-run-missing-state-cap.test.ts b/server/src/services/recovery/successful-run-missing-state-cap.test.ts index 0757ae1f50..ef7fd97334 100644 --- a/server/src/services/recovery/successful-run-missing-state-cap.test.ts +++ b/server/src/services/recovery/successful-run-missing-state-cap.test.ts @@ -3,7 +3,7 @@ import { SUCCESSFUL_RUN_MISSING_STATE_MAX_ATTEMPTS_CEILING, SUCCESSFUL_RUN_MISSING_STATE_MAX_ATTEMPTS_DEFAULT, parseSuccessfulRunMissingStateMaxAttempts, -} from "./service.ts"; +} from "./service.js"; describe("parseSuccessfulRunMissingStateMaxAttempts", () => { it("returns the default for missing, empty, or non-integer values", () => {