我有一个构造函数,它接收一个名为TestService的spyObj:
constructor(private testService: TestService) {
testService.getTestData().subscribe((settings) => {
this.settings = settings;
}
}
使用Jasmine,如何在TestService上为subscribe()和getTestData()创建间谍?
提前致谢! 麦克