How can i test a component with slot, for example carousel has a slot component inside and slider has a slot component inside.
This doesnt support that feature.
Maybe i must use e2e tests?
Tell me please how to do this. Thank you.
// This is how i use
<carousel>
<slide>
<div></div>
</slide>
</carousel>
// Carousel component
<carousel>
<slot></slot>
</carousel>
// Slide component
<slide>
<slot></slot>
</slide>