0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

test: add failing test for empty slots

This commit is contained in:
Nate Moore 2022-05-31 10:49:11 -05:00
parent 5e66ffb3a0
commit 16cefdf9de
2 changed files with 23 additions and 0 deletions

View file

@ -44,6 +44,16 @@ describe('Slots', () => {
expect($('#override')).to.have.lengthOf(1);
});
it('Components that accept slots don\'t require theme', async () => {
const html = await fixture.readFile('/empty.html');
const $ = cheerio.load(html);
expect($('#a').length).to.equal(1);
expect($('#b').length).to.equal(1);
expect($('#c').length).to.equal(1);
expect($('#default').length).to.equal(1);
});
it('Slots work with multiple elements', async () => {
const html = await fixture.readFile('/multiple/index.html');
const $ = cheerio.load(html);

View file

@ -0,0 +1,13 @@
---
import Slotted from '../components/Slotted.astro';
---
<html>
<head>
<!-- Head Stuff -->
</head>
<body>
<!-- This component expects slots but we're not passing any in -->
<Slotted />
</body>
</html>