Skip to content

Commit

Permalink
Remove it.only (#3655)
Browse files Browse the repository at this point in the history
* chore: remove it.only

* test: fix failing test

Co-authored-by: Nate Moore <[email protected]>
  • Loading branch information
natemoo-re and natemoo-re authored Jun 20, 2022
1 parent 2a39e93 commit bb02bca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/astro/test/astro-markdown.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand All @@ -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
Expand Down

0 comments on commit bb02bca

Please sign in to comment.