From 0f0e4c649b689249adad592bcae1350d0c93649b Mon Sep 17 00:00:00 2001 From: acamq <179265037+acamq@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:26:35 -0600 Subject: [PATCH] fix(test): update package name to oh-my-openagent in install test The test was checking for the old package name 'oh-my-opencode' but the plugin registration now uses 'oh-my-openagent'. --- src/cli/install.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/install.test.ts b/src/cli/install.test.ts index a83f48c79..87631fdc1 100644 --- a/src/cli/install.test.ts +++ b/src/cli/install.test.ts @@ -108,7 +108,7 @@ describe("install CLI - binary check behavior", () => { // then opencode.json should have plugin entry const config = JSON.parse(readFileSync(configPath, "utf-8")) expect(config.plugin).toBeDefined() - expect(config.plugin.some((p: string) => p.includes("oh-my-opencode"))).toBe(true) + expect(config.plugin.some((p: string) => p.includes("oh-my-openagent"))).toBe(true) // then exit code should be 0 (success) expect(exitCode).toBe(0)