fix(cli): remove duplicate test runtime keys

This commit is contained in:
Vincent Koc
2026-03-22 17:47:35 -07:00
parent bd28eb9f5b
commit e3c7a05cb5
9 changed files with 0 additions and 25 deletions

View File

@@ -19,8 +19,6 @@ vi.mock("../runtime.js", () => ({
writeJson: (value: unknown, space = 2) =>
mockLog(JSON.stringify(value, null, space > 0 ? space : undefined)),
exit: (code: number) => mockExit(code),
writeStdout: (value: string) => mockLog(value),
writeJson: (value: unknown, space = 2) => mockLog(JSON.stringify(value, null, space)),
},
}));