summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/test/astro-markdown.test.js4
1 files 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('<!-- HTML comments in code fence -->');
+ expect($('pre > code').text()).to.equal('<!-- HTML comments in code fence -->');
});
// https://github.com/withastro/astro/issues/3254