Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
remove .skip
Browse files Browse the repository at this point in the history
  • Loading branch information
Alun Turner committed Jun 28, 2023
1 parent 128367a commit 6cd6e94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platforms/web/lib/conversion.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '<blockquote><p>I am a quote</p></blockquote>';
Expand Down

0 comments on commit 6cd6e94

Please sign in to comment.