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');