From b701c8069e7b4666f8939e6dc8de842984ec81c6 Mon Sep 17 00:00:00 2001 From: dal Date: Wed, 8 Oct 2025 13:01:41 -0600 Subject: [PATCH] test fix --- apps/cli/src/components/shared/indented-content.test.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/cli/src/components/shared/indented-content.test.tsx b/apps/cli/src/components/shared/indented-content.test.tsx index 6135d4129..18e38312c 100644 --- a/apps/cli/src/components/shared/indented-content.test.tsx +++ b/apps/cli/src/components/shared/indented-content.test.tsx @@ -35,7 +35,11 @@ describe('IndentedContent', () => { }); it('should handle text nodes directly', () => { - const { lastFrame } = render(Direct text content); + const { lastFrame } = render( + + Direct text content + + ); expect(lastFrame()).toContain('Direct text content'); });