@@ -722,6 +722,7 @@ describe("runCodexAppServerAttempt", () => {
|
722 | 722 | const workspaceDir = path.join(tempDir, "workspace"); |
723 | 723 | const params = createParams(sessionFile, workspaceDir); |
724 | 724 | params.disableTools = false; |
| 725 | +params.runtimePlan = createCodexRuntimePlanFixture(); |
725 | 726 | const sandboxSessionKey = params.sessionKey; |
726 | 727 | if (!sandboxSessionKey) { |
727 | 728 | throw new Error("createParams must provide a sessionKey for Codex dynamic tool tests."); |
@@ -758,6 +759,7 @@ describe("runCodexAppServerAttempt", () => {
|
758 | 759 | const workspaceDir = path.join(tempDir, "workspace"); |
759 | 760 | const params = createParams(sessionFile, workspaceDir); |
760 | 761 | params.disableTools = false; |
| 762 | +params.runtimePlan = createCodexRuntimePlanFixture(); |
761 | 763 | const sandboxSessionKey = params.sessionKey; |
762 | 764 | if (!sandboxSessionKey) { |
763 | 765 | throw new Error("createParams must provide a sessionKey for Codex dynamic tool tests."); |
@@ -856,6 +858,7 @@ describe("runCodexAppServerAttempt", () => {
|
856 | 858 | const workspaceDir = path.join(tempDir, "workspace"); |
857 | 859 | const params = createParams(sessionFile, workspaceDir); |
858 | 860 | params.disableTools = false; |
| 861 | +params.runtimePlan = createCodexRuntimePlanFixture(); |
859 | 862 | const sandboxSessionKey = params.sessionKey; |
860 | 863 | if (!sandboxSessionKey) { |
861 | 864 | throw new Error("createParams must provide a sessionKey for Codex dynamic tool tests."); |
@@ -886,6 +889,7 @@ describe("runCodexAppServerAttempt", () => {
|
886 | 889 | const workspaceDir = path.join(tempDir, "workspace"); |
887 | 890 | const params = createParams(sessionFile, workspaceDir); |
888 | 891 | params.disableTools = false; |
| 892 | +params.runtimePlan = createCodexRuntimePlanFixture(); |
889 | 893 | const sandboxSessionKey = params.sessionKey; |
890 | 894 | if (!sandboxSessionKey) { |
891 | 895 | throw new Error("createParams must provide a sessionKey for Codex dynamic tool tests."); |
|