From 6cd6e941d5efd26a28bbf6e6e298fcb35615807a Mon Sep 17 00:00:00 2001 From: Alun Turner Date: Wed, 28 Jun 2023 16:51:18 +0100 Subject: [PATCH] remove .skip --- platforms/web/lib/conversion.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/web/lib/conversion.test.ts b/platforms/web/lib/conversion.test.ts index 91b31068d..c5dd2a290 100644 --- a/platforms/web/lib/conversion.test.ts +++ b/platforms/web/lib/conversion.test.ts @@ -73,7 +73,7 @@ describe('Rich text <=> plain text', () => { expect(convertedPlainText).toBe(expectedPlainText); }); - it.skip('converts blockquotes from plain => rich', async () => { + it('converts blockquotes from plain => rich', async () => { const plainText = '> I am a quote'; const convertedRichText = await plainToRich(plainText, false); const expectedRichText = '

I am a quote

';