fix(cli): fix missing awaits in tests after merge

This commit is contained in:
Keith Guerin
2026-03-20 15:36:09 -07:00
parent 3be1de915f
commit 692c34c834
@@ -2681,7 +2681,7 @@ describe('useGeminiStream', () => {
})(),
);
const { result } = renderHookWithDefaults();
const { result } = await renderHookWithDefaults();
// Submit a query
await act(async () => {
@@ -2735,7 +2735,7 @@ describe('useGeminiStream', () => {
})(),
);
const { result } = renderHookWithDefaults();
const { result } = await renderHookWithDefaults();
// Submit a query
await act(async () => {