当在Angular项目中使用Jest进行测试时,遇到“无法找到名称'By'”错误通常是因为缺少必要的导入。
要解决此问题,可以按照以下步骤进行操作:
By
:import { By } from '@angular/platform-browser';
import { YourComponent } from 'path/to/your/component';
// 或
import { YourModule } from 'path/to/your/module';
TestBed
和async
:import { TestBed, async } from '@angular/core/testing';
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [YourComponent], // 或者引入你的模块
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(YourComponent); // 或者创建你的模块的组件实例
component = fixture.componentInstance;
fixture.detectChanges();
});
jest.config.js
文件中包含了正确的配置:module.exports = {
// ...
moduleNameMapper: {
'@angular/(.*)': '/node_modules/@angular/$1',
},
// ...
};
通过检查以上步骤并采取适当的措施,你应该能够解决“无法找到名称'By'”的问题。