fix(cli): resolve merge conflicts and align with async test helpers

This commit is contained in:
Keith Guerin
2026-03-20 19:04:03 -07:00
parent 692c34c834
commit 511cbc54c9
3 changed files with 10 additions and 3 deletions
@@ -11,7 +11,7 @@ import { createMockCommandContext } from '../../test-utils/mockCommandContext.js
import { MessageType } from '../types.js';
vi.mock('@google/gemini-cli-core', async (importOriginal) => {
const actual = (await importOriginal()) as any;
const actual = (await importOriginal()) as Record<string, unknown>;
return {
...actual,
tokenLimit: vi.fn(),