From 7c5f9b2adc6a41a2b571deb903d8cf77b26e10cf Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Wed, 4 Feb 2026 12:39:29 +0000 Subject: [PATCH] style(codex): remove trailing whitespace in test file --- registry/coder-labs/modules/codex/main.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/registry/coder-labs/modules/codex/main.test.ts b/registry/coder-labs/modules/codex/main.test.ts index f11994eb..fd18dd46 100644 --- a/registry/coder-labs/modules/codex/main.test.ts +++ b/registry/coder-labs/modules/codex/main.test.ts @@ -41,14 +41,14 @@ interface SetupProps { const setup = async (props?: SetupProps): Promise<{ id: string }> => { const projectDir = "/home/coder/project"; - + const moduleVars: Record = { install_codex: props?.skipCodexMock ? "true" : "false", codex_model: "gpt-4-turbo", workdir: "/home/coder", ...props?.moduleVariables, }; - + // For backward compatibility: install_agentapi takes precedence over enable_tasks // Only set install_agentapi when explicitly installing real AgentAPI if (props?.skipAgentAPIMock) { @@ -56,7 +56,7 @@ const setup = async (props?: SetupProps): Promise<{ id: string }> => { } // Otherwise, let enable_tasks control whether agentapi module runs // (defaults to true unless explicitly disabled in moduleVariables) - + const { id } = await setupUtil({ moduleDir: import.meta.dir, moduleVariables: moduleVars,