我有一个 Angular 应用程序,其中有许多组件。但是现在我只想运行测试,login.component.ts
所以我在我的test.ts
文件中这样做了
const context = require.context('./', true, /login\.component\.spec\.ts$/);
但是,当我运行ng test
它时,它会运行所有组件的测试文件,并在其中一个指令上出现错误,如下所示:
我有一个 Angular 应用程序,其中有许多组件。但是现在我只想运行测试,login.component.ts
所以我在我的test.ts
文件中这样做了
const context = require.context('./', true, /login\.component\.spec\.ts$/);
但是,当我运行ng test
它时,它会运行所有组件的测试文件,并在其中一个指令上出现错误,如下所示: