I have the following code that I can't mock in my unit tests:
@ContentChild(CarouselInfoComponent) carouselInfo: CarouselInfoComponent;
@ContentChild(CarouselComponent) carousel: CarouselComponent;
ngAfterViewInit(): void {
this.carouselInfo.itemSelected.subscribe((index: number) => {
this.setActiveCarousel(index);
});
this.carousel.itemSelected.subscribe((index: number) => {
this.setActiveCarouselInfo(index);
});
}
I have tried something like this:
// spec
// beforeEach
TestBed.configureTestingModule({
declarations: [ CarouselGalleryComponent, CarouselInfoComponent, CarouselComponent ]
})
// it
spyOn(component.carouselInfo, 'itemSelected').and.returnValue(of(1));
But I get the following error:
Argument of type 'string' is not assignable to parameter of type 'never'
I understand that this is used for methods and basically itemSelected
is a property of the child component (which, by the way, is a component projected using ng-content).
Note: itemSelected (in both cases) is an instance of EventEmitter en every child component.
So if you want to simulate a value emit then you can use: