Skip to content

Commit 1ad346e

Browse files
committed
test(codex): align shared-client version fixtures with the 0.143.0 floor
1 parent 8589759 commit 1ad346e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

extensions/codex/src/app-server/shared-client.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ describe("shared Codex app-server client", () => {
792792
await expect(pendingLease).rejects.toThrow("codex app-server client is closed");
793793

794794
const freshLease = getLeasedSharedCodexAppServerClient({ timeoutMs: 1000 });
795-
await sendInitializeResult(second, "openclaw/0.142.0 (macOS; test)");
795+
await sendInitializeResult(second, "openclaw/0.143.0 (macOS; test)");
796796
await expect(freshLease).resolves.toBe(second.client);
797797
expect(second.process.stdin.destroyed).toBe(false);
798798
});
@@ -802,7 +802,7 @@ describe("shared Codex app-server client", () => {
802802
vi.spyOn(CodexAppServerClient, "start").mockReturnValueOnce(first.client);
803803

804804
const lease = getLeasedSharedCodexAppServerClient({ timeoutMs: 1000 });
805-
await sendInitializeResult(first, "openclaw/0.142.0 (macOS; test)");
805+
await sendInitializeResult(first, "openclaw/0.143.0 (macOS; test)");
806806
await expect(lease).resolves.toBe(first.client);
807807

808808
// Routine cleanup detaches gracefully; a later terminal-idle kill must
@@ -828,7 +828,7 @@ describe("shared Codex app-server client", () => {
828828
vi.spyOn(CodexAppServerClient, "start").mockReturnValueOnce(first.client);
829829

830830
const lease = getLeasedSharedCodexAppServerClient({ timeoutMs: 1000 });
831-
await sendInitializeResult(first, "openclaw/0.142.0 (macOS; test)");
831+
await sendInitializeResult(first, "openclaw/0.143.0 (macOS; test)");
832832
await expect(lease).resolves.toBe(first.client);
833833

834834
// Routine cleanup (e.g. one-shot bundle-MCP) must not yank a healthy

0 commit comments

Comments
 (0)