diff options
author | 2021-09-07 20:23:50 +0000 | |
---|---|---|
committer | 2021-09-07 20:23:50 +0000 | |
commit | 6fc8202e60f666d6d81f69dd812cbdbe138f8f14 (patch) | |
tree | bb5ee724c3fad8860c42c1f8f610c31d1f3defe5 | |
parent | 00fd7ca4dc4d2591eb31887e4b59f4ed312530ef (diff) | |
download | astro-6fc8202e60f666d6d81f69dd812cbdbe138f8f14.tar.gz astro-6fc8202e60f666d6d81f69dd812cbdbe138f8f14.tar.zst astro-6fc8202e60f666d6d81f69dd812cbdbe138f8f14.zip |
[ci] yarn format
-rw-r--r-- | packages/astro/test/astro-markdown.test.js | 6 |
1 files changed, 3 insertions, 3 deletions
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 `<code>` in the codeblock"); - assert.ok($el[1].children.length === 0, "The empty `<pre>` failed to render"); + assert.ok($el[0].children.length === 1, 'There is not a `<code>` in the codeblock'); + assert.ok($el[1].children.length === 0, 'The empty `<pre>` failed to render'); }); Markdown('Scoped styles should not break syntax highlight', async ({ runtime }) => { |