diff --git a/apps/server/src/orchestration/Layers/ProviderCommandReactor.test.ts b/apps/server/src/orchestration/Layers/ProviderCommandReactor.test.ts index 142f8eda9365..320739848a37 100644 --- a/apps/server/src/orchestration/Layers/ProviderCommandReactor.test.ts +++ b/apps/server/src/orchestration/Layers/ProviderCommandReactor.test.ts @@ -301,7 +301,6 @@ describe("ProviderCommandReactor", () => { respondToRequest: respondToRequest as ProviderServiceShape["respondToRequest"], respondToUserInput: respondToUserInput as ProviderServiceShape["respondToUserInput"], stopSession: stopSession as ProviderServiceShape["stopSession"], - stopAll: () => Effect.void, listSessions: () => Effect.succeed(runtimeSessions), getCapabilities: (_provider) => Effect.succeed({ diff --git a/apps/server/src/orchestration/Layers/StalledTurnWatchdog.test.ts b/apps/server/src/orchestration/Layers/StalledTurnWatchdog.test.ts index c22bdeffa4d9..e10da79ba655 100644 --- a/apps/server/src/orchestration/Layers/StalledTurnWatchdog.test.ts +++ b/apps/server/src/orchestration/Layers/StalledTurnWatchdog.test.ts @@ -167,7 +167,6 @@ describe("StalledTurnWatchdog", () => { respondToRequest: () => unsupported(), respondToUserInput: () => unsupported(), stopSession: () => unsupported(), - stopAll: () => Effect.void, listSessions: () => Effect.succeed([]), getCapabilities: () => unsupported(), getInstanceInfo: () => unsupported(), diff --git a/oxlint-plugin-t3code/rules/no-manual-effect-runtime-in-tests.ts b/oxlint-plugin-t3code/rules/no-manual-effect-runtime-in-tests.ts index e6eff1e5c215..9617c917966a 100644 --- a/oxlint-plugin-t3code/rules/no-manual-effect-runtime-in-tests.ts +++ b/oxlint-plugin-t3code/rules/no-manual-effect-runtime-in-tests.ts @@ -29,8 +29,9 @@ const LEGACY_BASELINE = new Map([ ["apps/server/src/orchestration/Layers/CheckpointReactor.test.ts", 42], ["apps/server/src/orchestration/Layers/OrchestrationEngine.test.ts", 5], ["apps/server/src/orchestration/Layers/OrchestrationReactor.test.ts", 4], - ["apps/server/src/orchestration/Layers/ProviderCommandReactor.test.ts", 70], + ["apps/server/src/orchestration/Layers/ProviderCommandReactor.test.ts", 72], ["apps/server/src/orchestration/Layers/ProviderRuntimeIngestion.test.ts", 31], + ["apps/server/src/orchestration/Layers/StalledTurnWatchdog.test.ts", 13], ["apps/server/src/orchestration/Layers/ThreadDeletionReactor.test.ts", 2], ["apps/server/src/orchestration/projector.test.ts", 20], ["apps/server/src/project/Layers/ProjectSetupScriptRunner.test.ts", 4], diff --git a/scripts/lib/dev-process-guard.test.ts b/scripts/lib/dev-process-guard.test.ts index c3bb88229319..e8d5da11ebe9 100644 --- a/scripts/lib/dev-process-guard.test.ts +++ b/scripts/lib/dev-process-guard.test.ts @@ -100,6 +100,7 @@ describe("dev-process-guard staleness", () => { startedAt: "", }; const result = staleRunnerFromLock(selfLock); + // oxlint-disable-next-line t3code/no-global-process-runtime -- Launcher-boundary guard test branches on the real host platform (Linux cmdline readability); it deliberately has no Effect runtime to inject HostProcessPlatform through. if (process.platform === "linux") { assert.strictEqual(result, undefined); } else {