From adcea4947c8fb5663710619aa9041e42f05bfff8 Mon Sep 17 00:00:00 2001 From: jennspencer Date: Mon, 1 Jul 2024 12:05:58 -0700 Subject: [PATCH] unskip test --- __tests__/compilers/html-block.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/__tests__/compilers/html-block.test.ts b/__tests__/compilers/html-block.test.ts index 2aed7e97b..861adba3d 100644 --- a/__tests__/compilers/html-block.test.ts +++ b/__tests__/compilers/html-block.test.ts @@ -13,10 +13,10 @@ describe('html-block compiler', () => { expect(mdx(mdast(markdown)).trim()).toBe(markdown.trim()); }); - it.skip('compiles html blocks with indents', () => { + it('compiles html blocks preserving newlines', () => { const markdown = ` {\` -

+

 const foo = () => {
   const bar = {
     baz: 'blammo'
@@ -24,7 +24,7 @@ const foo = () => {
 
   return bar
 }
-  
+
\`}
`;