diff options
author | 2022-04-19 20:38:02 +0000 | |
---|---|---|
committer | 2022-04-19 20:38:02 +0000 | |
commit | d538c9237db66950db828c7329544ee21f3074e5 (patch) | |
tree | 1581c9ae39c69d0ffaae828655504da29faf30ae | |
parent | 9ba1f4f8251155b69398a8af22d6ab8587b96120 (diff) | |
download | astro-d538c9237db66950db828c7329544ee21f3074e5.tar.gz astro-d538c9237db66950db828c7329544ee21f3074e5.tar.zst astro-d538c9237db66950db828c7329544ee21f3074e5.zip |
[ci] format
-rw-r--r-- | packages/astro/test/astro-markdown.test.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/astro/test/astro-markdown.test.js b/packages/astro/test/astro-markdown.test.js index 5e8b8f8c9..7d4497822 100644 --- a/packages/astro/test/astro-markdown.test.js +++ b/packages/astro/test/astro-markdown.test.js @@ -27,12 +27,12 @@ describe('Astro Markdown', () => { const html = await fixture.readFile('/jsx-expressions/index.html'); const $ = cheerio.load(html); - expect($('h2').html()).to.equal('Blog Post with JSX expressions') - expect($('p').first().html()).to.equal('JSX at the start of the line!') + expect($('h2').html()).to.equal('Blog Post with JSX expressions'); + expect($('p').first().html()).to.equal('JSX at the start of the line!'); for (let listItem of ['test-1', 'test-2', 'test-3']) { - expect($(`#${listItem}`).html()).to.equal(`\n${listItem}\n`) + expect($(`#${listItem}`).html()).to.equal(`\n${listItem}\n`); } - }) + }); it('Can load more complex jsxy stuff', async () => { const html = await fixture.readFile('/complex/index.html'); |