diff --git a/__tests__/renderer-spec.tsx b/__tests__/renderer-spec.tsx index caaf5c3..0c320b0 100644 --- a/__tests__/renderer-spec.tsx +++ b/__tests__/renderer-spec.tsx @@ -166,3 +166,12 @@ test('should render blockquote with plain text', () => { ); }); +test('should render blockquote with mixed text', () => { + expect( + (render( +
++ ) as string).trim() + ).toBe('> This is _hello_ **world**'); +});This is hello world
+