Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,6 @@ describe("StalledTurnWatchdog", () => {
respondToRequest: () => unsupported(),
respondToUserInput: () => unsupported(),
stopSession: () => unsupported(),
stopAll: () => Effect.void,
listSessions: () => Effect.succeed([]),
getCapabilities: () => unsupported(),
getInstanceInfo: () => unsupported(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ const LEGACY_BASELINE = new Map<string, number>([
["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],
Expand Down
1 change: 1 addition & 0 deletions scripts/lib/dev-process-guard.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading