diff --git a/scripts/release-candidate-checklist.d.mts b/scripts/release-candidate-checklist.d.mts index 04b8a1ed256e..2932a64ee796 100644 --- a/scripts/release-candidate-checklist.d.mts +++ b/scripts/release-candidate-checklist.d.mts @@ -98,11 +98,6 @@ export function validateWindowsSourceRelease( digest: unknown; }[]; }>; -export function isDirectReleaseCandidateExecution( - directPath: string | undefined, - modulePath: string, - resolveRealPath?: (path: string) => string, -): boolean; export function validateCandidateCheckout({ targetSha, targetHeadSha, diff --git a/test/scripts/parallels-smoke-model.test.ts b/test/scripts/parallels-smoke-model.test.ts index f50d38b36153..302187e84754 100644 --- a/test/scripts/parallels-smoke-model.test.ts +++ b/test/scripts/parallels-smoke-model.test.ts @@ -1183,7 +1183,9 @@ if (isPrlctl) { it("seeds agent workspace state before OS smoke agent turns", () => { const workspace = readFileSync(TS_PATHS.agentWorkspace, "utf8"); - expect(workspace).toContain("workspace-state.json"); + // workspace-state.json was retired (b6535fb8de5: stop writing retired + // smoke state); identity/bootstrap seeding remains the contract. + expect(workspace).not.toContain("workspace-state.json"); expect(workspace).toContain("IDENTITY.md"); expect(workspace).toContain("BOOTSTRAP.md");