How to mock abstract service? #612
jfpicard123
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm testing a component that has dependency on abstract class
constructor(private service: IService) { }
The providers are configured as such
{ provide: IService, useClass: Service}
How can I mock the dependency? Using mockProvider(IService), I always get nulls on all service methods
service = spectator.inject(IService); service.method.andReturn ...
Cannot call andReturn of null ...
Beta Was this translation helpful? Give feedback.
All reactions