我正在學習Angular,我想做測試,但我卡住了。我有一個功能:你如何模擬ActivatedRoute
ngOnInit(): void {
this.route.paramMap
.switchMap((params: ParamMap) =>
this.SomethingService.getSomething(params.get('id')))
.subscribe(something => {
this.something = something;
this.doSomethingElse();
});
}
其中
route: ActivatedRoute
,我要測試,但我不知道如何嘲笑ActivatedRoute
這不起作用,因爲OP使用'paramMap'而不是'params'。 – Splaktar