chore: fix nested slot test
This commit is contained in:
parent
671fc28b93
commit
d98c6a322b
1 changed files with 3 additions and 3 deletions
|
@ -15,9 +15,9 @@ describe('Nested Slots', () => {
|
||||||
const html = await fixture.readFile('/hidden-nested/index.html');
|
const html = await fixture.readFile('/hidden-nested/index.html');
|
||||||
const $ = cheerio.load(html);
|
const $ = cheerio.load(html);
|
||||||
expect($('script')).to.have.a.lengthOf(3, 'script rendered');
|
expect($('script')).to.have.a.lengthOf(3, 'script rendered');
|
||||||
// Astro Island scripts are [async], so this will only find other types of scripts
|
// Astro Island scripts are, so this will only find other types of scripts
|
||||||
const scriptInTemplate = $($('template')[0].children[0]).find('script:not([async])');
|
const scriptInTemplate = $($('template')[0].children[0]).find('script');
|
||||||
expect(scriptInTemplate).to.have.a.lengthOf(0, 'script defined outside of the inner template');
|
expect(scriptInTemplate).to.have.a.lengthOf(1, 'script defined outside of the inner template');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Slots rendered via Astro.slots.render have the hydration script', async () => {
|
it('Slots rendered via Astro.slots.render have the hydration script', async () => {
|
||||||
|
|
Loading…
Reference in a new issue