Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-sull authored and github-actions[bot] committed Jun 20, 2022
1 parent 73e755a commit 197f649
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/astro-markdown.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ describe('Astro Markdown', () => {
it.only('Can handle HTML comments in inline code', async () => {
const html = await fixture.readFile('/comment-with-js/index.html');
const $ = cheerio.load(html);

expect($('p code').text()).to.equal('<!-- HTML comments in code -->');
});

it('Can handle HTML comments in code fences', async () => {
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($('body > code').text()).to.equal('<!-- HTML comments in code fence -->');
});

// https://github.com/withastro/astro/issues/3254
Expand Down

0 comments on commit 197f649

Please sign in to comment.