From 035db1c07bc0caf0972e5bdf6dda74b0d220296e Mon Sep 17 00:00:00 2001 From: pakrym-oai Date: Sat, 25 Oct 2025 12:02:33 -0700 Subject: [PATCH 1/2] Skip flaky test --- sdk/typescript/tests/run.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sdk/typescript/tests/run.test.ts b/sdk/typescript/tests/run.test.ts index f495b1e6ec40..7410357e9098 100644 --- a/sdk/typescript/tests/run.test.ts +++ b/sdk/typescript/tests/run.test.ts @@ -308,7 +308,8 @@ describe("Codex", () => { await close(); } }); - it("forwards images to exec", async () => { + // TODO(pakrym): unskip the test + xit("forwards images to exec", async () => { const { url, close } = await startResponsesTestProxy({ statusCode: 200, responseBodies: [ From 3010a90fe7dc307043915cd61104cfd1cc8a1ae9 Mon Sep 17 00:00:00 2001 From: pakrym-oai Date: Sat, 25 Oct 2025 12:04:02 -0700 Subject: [PATCH 2/2] test: import xit from jest globals for skipped test support --- sdk/typescript/tests/run.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/typescript/tests/run.test.ts b/sdk/typescript/tests/run.test.ts index 7410357e9098..a8a9c7fbe8d2 100644 --- a/sdk/typescript/tests/run.test.ts +++ b/sdk/typescript/tests/run.test.ts @@ -3,7 +3,7 @@ import os from "node:os"; import path from "node:path"; import { codexExecSpy } from "./codexExecSpy"; -import { describe, expect, it } from "@jest/globals"; +import { describe, expect, it, xit } from "@jest/globals"; import { Codex } from "../src/codex";