From d538c9237db66950db828c7329544ee21f3074e5 Mon Sep 17 00:00:00 2001 From: bholmesdev Date: Tue, 19 Apr 2022 20:38:02 +0000 Subject: [PATCH] [ci] format --- packages/astro/test/astro-markdown.test.js | 8 ++++---- 1 file 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');