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, }, );