[ci] format

This commit is contained in:
bholmesdev 2022-04-19 20:38:02 +00:00 committed by github-actions[bot]
parent 9ba1f4f825
commit d538c9237d

View file

@ -27,12 +27,12 @@ describe('Astro Markdown', () => {
const html = await fixture.readFile('/jsx-expressions/index.html');
const $ = cheerio.load(html);
expect($('h2').html()).to.equal('Blog Post with JSX expressions')
expect($('p').first().html()).to.equal('JSX at the start of the line!')
expect($('h2').html()).to.equal('Blog Post with JSX expressions');
expect($('p').first().html()).to.equal('JSX at the start of the line!');
for (let listItem of ['test-1', 'test-2', 'test-3']) {
expect($(`#${listItem}`).html()).to.equal(`\n${listItem}\n`)
expect($(`#${listItem}`).html()).to.equal(`\n${listItem}\n`);
}
})
});
it('Can load more complex jsxy stuff', async () => {
const html = await fixture.readFile('/complex/index.html');