Remove it.only (#3655)

* chore: remove it.only

* test: fix failing test

Co-authored-by: Nate Moore <nate@astro.build>
This commit is contained in:
Nate Moore 2022-06-20 17:40:53 -05:00 committed by GitHub
parent 2a39e93875
commit bb02bca36c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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