From bb02bca36c90fe6746a8968a164f2c0638e1cf72 Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Mon, 20 Jun 2022 17:40:53 -0500 Subject: [PATCH] Remove it.only (#3655) * chore: remove it.only * test: fix failing test Co-authored-by: Nate Moore --- packages/astro/test/astro-markdown.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/astro/test/astro-markdown.test.js b/packages/astro/test/astro-markdown.test.js index 6ebdf3bfa..0a5c1b2f9 100644 --- a/packages/astro/test/astro-markdown.test.js +++ b/packages/astro/test/astro-markdown.test.js @@ -79,7 +79,7 @@ describe('Astro Markdown', () => { expect($('h1').text()).to.equal('It still works!'); }); - it.only('Can handle HTML comments in inline code', async () => { + it('Can handle HTML comments in inline code', async () => { const html = await fixture.readFile('/comment-with-js/index.html'); const $ = cheerio.load(html); @@ -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($('pre > code').text()).to.equal(''); }); // https://github.com/withastro/astro/issues/3254