为什么模块没有找到角度" TestBed"?

时间:2018-04-15 06:55:52

标签: javascript angular

你可以告诉我为什么没有找到有角度的模块? 这是我的代码 https://codesandbox.io/s/8k7vlvl5q2

问题就在这一行

<<import { ComponentFixture, async, TestBed } from "@angular/testing";
>>
找不到

TestBed

enter image description here

1 个答案:

答案 0 :(得分:0)

没有名为@angular/testing的模块。

您必须从TestBed导入@angular/core/testing

将导入行更改为

import { ComponentFixture, async, TestBed } from "@angular/core/testing";

还要确保正确安装@angular/core