From 197f6492b9a4dad95a0a5d70932d05d7b47f5c54 Mon Sep 17 00:00:00 2001 From: tony-sull Date: Mon, 20 Jun 2022 17:14:08 +0000 Subject: [PATCH] [ci] format --- test/astro-markdown.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/astro-markdown.test.js b/test/astro-markdown.test.js index 0afbfdf36c65..6ebdf3bfad21 100644 --- a/test/astro-markdown.test.js +++ b/test/astro-markdown.test.js @@ -82,7 +82,7 @@ describe('Astro Markdown', () => { it.only('Can handle HTML comments in inline code', async () => { const html = await fixture.readFile('/comment-with-js/index.html'); const $ = cheerio.load(html); - + expect($('p code').text()).to.equal(''); }); @@ -90,7 +90,7 @@ describe('Astro Markdown', () => { const html = await fixture.readFile('/comment-with-js/index.html'); const $ = cheerio.load(html); - expect($('body > code').text()).to.equal('') + expect($('body > code').text()).to.equal(''); }); // https://github.com/withastro/astro/issues/3254