I need to create a test of this get, but every time I try I get the error "TypeError: Cannot read property 'subscribe' of undefined"
My service function
getAPICard(): Observable<any> {
return this.http.get<any[]>(`${this.GET_APICard}`);
}
My spec.ts
it('testing get api', (done:DoneFn) =>{
const mockObj = [{id:'1',
title:'title',
description:'description',
image: 'imagem',
amount: 10
}];
httpClientSpy.get.and.returnValue(of(mockObj)).and.callThrough();
modalIndicationService.getAPICard().subscribe(
dados => {
expect(dados).toEqual(mockObj, 'mockObj');
done()
},
done.fail
)
expect(httpClientSpy.get.calls.count()).toBe(1, 'one call');
done();
})
I think you can't have both
.and.returnValueand.and.callThrough(). Only one of the two makes sense becausereturnValuewill always return a value andcallThroughwill call the actual function.Try changing this line to:
The rest looks good.