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:
parent
5e66ffb3a0
commit
16cefdf9de
2 changed files with 23 additions and 0 deletions
|
@ -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);
|
||||
|
|
13
packages/astro/test/fixtures/astro-slots/src/pages/empty.astro
vendored
Normal file
13
packages/astro/test/fixtures/astro-slots/src/pages/empty.astro
vendored
Normal 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>
|
Loading…
Add table
Reference in a new issue