This commit is contained in:
dal 2025-10-08 13:01:41 -06:00
parent cee3c9d058
commit b701c8069e
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
1 changed files with 5 additions and 1 deletions

View File

@ -35,7 +35,11 @@ describe('IndentedContent', () => {
});
it('should handle text nodes directly', () => {
const { lastFrame } = render(<IndentedContent>Direct text content</IndentedContent>);
const { lastFrame } = render(
<IndentedContent>
<Text>Direct text content</Text>
</IndentedContent>
);
expect(lastFrame()).toContain('Direct text content');
});