问题就在这一行
<<import { ComponentFixture, async, TestBed } from "@angular/testing";
>>
找不到 TestBed
答案 0 :(得分:0)
没有名为@angular/testing
的模块。
您必须从TestBed
导入@angular/core/testing
。
将导入行更改为
import { ComponentFixture, async, TestBed } from "@angular/core/testing";
还要确保正确安装@angular/core
。