From bb1e70acab189339e9a5663116a49f00922a6c5f Mon Sep 17 00:00:00 2001 From: diegosouzapw Date: Sat, 18 Apr 2026 17:08:15 -0300 Subject: [PATCH] test: align codex passthrough assertion with explicit store retention policy --- tests/unit/chatcore-translation-paths.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/chatcore-translation-paths.test.ts b/tests/unit/chatcore-translation-paths.test.ts index 1388e94175..e765850b29 100644 --- a/tests/unit/chatcore-translation-paths.test.ts +++ b/tests/unit/chatcore-translation-paths.test.ts @@ -377,7 +377,7 @@ test("chatCore keeps Responses-native Codex payloads in native passthrough mode" assert.match(call.url, /\/responses$/); assert.equal(call.body.input, "ship it"); assert.equal(call.body.instructions, "custom system prompt"); - assert.equal(call.body.store, false); + assert.equal(call.body.store, true); assert.deepEqual(call.body.metadata, { source: "codex-client" }); assert.equal("messages" in call.body, false); });