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