From 909911c9b83e22f2a1e8877039dd1bced4bdbeac Mon Sep 17 00:00:00 2001 From: mkorwel Date: Sat, 18 Apr 2026 22:38:35 +0000 Subject: [PATCH] test: fix useSnowfall tests --- packages/cli/src/ui/hooks/useSnowfall.test.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/cli/src/ui/hooks/useSnowfall.test.tsx b/packages/cli/src/ui/hooks/useSnowfall.test.tsx index c261938986..aacea2f411 100644 --- a/packages/cli/src/ui/hooks/useSnowfall.test.tsx +++ b/packages/cli/src/ui/hooks/useSnowfall.test.tsx @@ -53,6 +53,7 @@ describe('useSnowfall', () => { () => useSnowfall(mockArt), { uiState: { history: [], historyRemountKey: 0 } as Partial, + allowEmptyFrame: true, }, ); @@ -67,6 +68,7 @@ describe('useSnowfall', () => { () => useSnowfall(mockArt), { uiState: { history: [], historyRemountKey: 0 } as Partial, + allowEmptyFrame: true, }, ); @@ -88,6 +90,7 @@ describe('useSnowfall', () => { () => useSnowfall(mockArt), { uiState: { history: [], historyRemountKey: 0 } as Partial, + allowEmptyFrame: true, }, ); @@ -103,6 +106,7 @@ describe('useSnowfall', () => { () => useSnowfall(mockArt), { uiState: { history: [], historyRemountKey: 0 } as Partial, + allowEmptyFrame: true, }, ); @@ -118,6 +122,7 @@ describe('useSnowfall', () => { history: [{ type: 'user', text: 'hello' }], historyRemountKey: 0, } as Partial, + allowEmptyFrame: true, }, );