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 <noreply@paperclip.ing>
This commit is contained in:
Claude Code 2026-08-13 06:18:03 +00:00
parent 0cca08af80
commit 12a4f16257
1 changed files with 1 additions and 1 deletions

View File

@ -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", () => {