0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

[ci] format

This commit is contained in:
Mohamed 2024-02-08 10:20:36 +00:00 committed by astrobot-houston
parent 372c34b84b
commit aa7680e75e

View file

@ -58,7 +58,7 @@ describe('HTML Slots', () => {
const $ = cheerio.load(html);
const slotDefault = $('#default');
assert.equal(slotDefault.text(), 'Default')
assert.equal(slotDefault.text(), 'Default');
const a = $('#a');
assert.equal(a.text().trim(), 'A');
@ -70,7 +70,7 @@ describe('HTML Slots', () => {
assert.equal(c.text().trim(), 'C');
const inline = $('#inline');
assert.equal(inline.html(), '<slot is:inline=""></slot>')
assert.equal(inline.html(), '<slot is:inline=""></slot>');
});
});
});