[ci] format

This commit is contained in:
matthewp 2022-05-12 16:05:06 +00:00 committed by github-actions[bot]
parent b463ddb3ce
commit 13e697fb80

View file

@ -82,7 +82,10 @@ describe('Component Libraries', () => {
const $ = cheerioLoad(html);
expect($('.counter').length).to.equal(1, 'Rendered the svelte counter');
expect($('.counter-message').text().trim()).to.equal('Hello, Svelte!', "rendered the counter's slot");
expect($('.counter-message').text().trim()).to.equal(
'Hello, Svelte!',
"rendered the counter's slot"
);
expect($('astro-root[uid]')).to.have.lengthOf(1, 'Included one hydration island');
});
@ -149,7 +152,10 @@ describe('Component Libraries', () => {
const $ = cheerioLoad(html);
expect($('.counter').length).to.equal(1, 'Rendered the svelte counter');
expect($('.counter-message').text().trim()).to.equal('Hello, Svelte!', "rendered the counter's slot");
expect($('.counter-message').text().trim()).to.equal(
'Hello, Svelte!',
"rendered the counter's slot"
);
expect($('astro-root[uid]')).to.have.lengthOf(1, 'Included one hydration island');
});