From b9d352e1ad03d9245db677689650815de2aeafac Mon Sep 17 00:00:00 2001 From: 35C4n0r Date: Fri, 17 Apr 2026 19:43:31 +0530 Subject: [PATCH] chore: bun fmt --- registry/coder/modules/agentapi/main.test.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/registry/coder/modules/agentapi/main.test.ts b/registry/coder/modules/agentapi/main.test.ts index be17bb4d..07835851 100644 --- a/registry/coder/modules/agentapi/main.test.ts +++ b/registry/coder/modules/agentapi/main.test.ts @@ -75,7 +75,11 @@ const setup = async (props?: SetupProps): Promise<{ id: string }> => { // Write the test start script directly to the module scripts dir, // since start_script is no longer a Terraform variable. const startScript = await loadTestFile(import.meta.dir, "agentapi-start.sh"); - await execContainer(id, ["bash", "-c", `mkdir -p /home/coder/${moduleDirName}/scripts`]); + await execContainer(id, [ + "bash", + "-c", + `mkdir -p /home/coder/${moduleDirName}/scripts`, + ]); await writeExecutable({ containerId: id, filePath: `/home/coder/${moduleDirName}/scripts/agentapi-start.sh`,