From b07589642dc23508f6de18c8b7f82a13b3ffd5a9 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 2 Mar 2026 17:41:45 +0000 Subject: [PATCH] test(perf): remove redundant acpx healthy-command case --- extensions/acpx/src/runtime.test.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/extensions/acpx/src/runtime.test.ts b/extensions/acpx/src/runtime.test.ts index 0c5565a929c..e216f94d46d 100644 --- a/extensions/acpx/src/runtime.test.ts +++ b/extensions/acpx/src/runtime.test.ts @@ -336,12 +336,6 @@ describe("AcpxRuntime", () => { expect(runtime.isHealthy()).toBe(false); }); - it("marks runtime healthy when command is available", async () => { - const { runtime } = await createMockRuntimeFixture(); - await runtime.probeAvailability(); - expect(runtime.isHealthy()).toBe(true); - }); - it("logs ACPX spawn resolution once per command policy", async () => { const { config } = await createMockRuntimeFixture(); const debugLogs: string[] = [];