diff --git a/packages/astro/test/astro-markdown.test.js b/packages/astro/test/astro-markdown.test.js index a10be66cf..9e13c0dc2 100644 --- a/packages/astro/test/astro-markdown.test.js +++ b/packages/astro/test/astro-markdown.test.js @@ -40,10 +40,10 @@ Markdown('Empty code blocks do not fail', async ({ runtime }) => { assert.ok(!result.error, `build error: ${result.error}`); const $ = doc(result.contents); - + const $el = $('pre'); - assert.ok($el[0].children.length === 1, "There is not a `` in the codeblock"); - assert.ok($el[1].children.length === 0, "The empty `
` failed to render");
+  assert.ok($el[0].children.length === 1, 'There is not a `` in the codeblock');
+  assert.ok($el[1].children.length === 0, 'The empty `
` failed to render');
 });
 
 Markdown('Scoped styles should not break syntax highlight', async ({ runtime }) => {