Skip to content
Merged
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
5 changes: 3 additions & 2 deletions sdk/typescript/tests/run.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down Expand Up @@ -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: [
Expand Down