diff --git a/registry/coder-labs/modules/gemini/main.test.ts b/registry/coder-labs/modules/gemini/main.test.ts index e0a36c49..33de80a9 100644 --- a/registry/coder-labs/modules/gemini/main.test.ts +++ b/registry/coder-labs/modules/gemini/main.test.ts @@ -107,6 +107,18 @@ describe("gemini", async () => { expect(resp.stdout).toContain(version_to_install); }); + test("install-gemini-latest", async () => { + const { id } = await setup({ + skipGeminiMock: true, + moduleVariables: { + install_gemini: "true", + gemini_version: "", + }, + }); + await execModuleScript(id); + await expectAgentAPIStarted(id); + }); + test("gemini-settings-json", async () => { const settings = '{"foo": "bar"}'; const { id } = await setup({ diff --git a/registry/coder/modules/goose/main.test.ts b/registry/coder/modules/goose/main.test.ts index 779767fb..3bce35e9 100644 --- a/registry/coder/modules/goose/main.test.ts +++ b/registry/coder/modules/goose/main.test.ts @@ -134,6 +134,7 @@ describe("goose", async () => { console.log(resp.stderr); } expect(resp.exitCode).toBe(0); + await expectAgentAPIStarted(id); }); test("config", async () => {