mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
[ci] format
This commit is contained in:
parent
372c34b84b
commit
aa7680e75e
1 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ describe('HTML Slots', () => {
|
||||||
const $ = cheerio.load(html);
|
const $ = cheerio.load(html);
|
||||||
|
|
||||||
const slotDefault = $('#default');
|
const slotDefault = $('#default');
|
||||||
assert.equal(slotDefault.text(), 'Default')
|
assert.equal(slotDefault.text(), 'Default');
|
||||||
|
|
||||||
const a = $('#a');
|
const a = $('#a');
|
||||||
assert.equal(a.text().trim(), 'A');
|
assert.equal(a.text().trim(), 'A');
|
||||||
|
@ -70,7 +70,7 @@ describe('HTML Slots', () => {
|
||||||
assert.equal(c.text().trim(), 'C');
|
assert.equal(c.text().trim(), 'C');
|
||||||
|
|
||||||
const inline = $('#inline');
|
const inline = $('#inline');
|
||||||
assert.equal(inline.html(), '<slot is:inline=""></slot>')
|
assert.equal(inline.html(), '<slot is:inline=""></slot>');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue