test(perf): remove redundant acpx healthy-command case

This commit is contained in:
Peter Steinberger
2026-03-02 17:41:45 +00:00
parent 26b8e6d510
commit b07589642d

View File

@@ -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[] = [];