Merge pull request #2598 from code-yeongyu/revert-2582-fix/fix-install-test

Revert "fix(test): update package name to oh-my-openagent in install test"
This commit is contained in:
acamq
2026-03-15 20:09:25 -06:00
committed by GitHub

View File

@@ -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-openagent"))).toBe(true)
expect(config.plugin.some((p: string) => p.includes("oh-my-opencode"))).toBe(true)
// then exit code should be 0 (success)
expect(exitCode).toBe(0)