在 Angular 15 中,这个错误通常是因为在单元测试中使用了与浏览器相关的 API,而在 Node.js 环境中执行单元测试时找不到这些 API。解决这个问题的方法是使用适当的模拟或替代。
以下是一些可能的解决方法:
import { TestBed, ComponentFixture } from '@angular/core/testing';
describe('YourComponent', () => {
let component: YourComponent;
let fixture: ComponentFixture;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [YourComponent]
}).compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(YourComponent);
component = fixture.componentInstance;
});
it('should do something', () => {
// 进行测试
});
});
npm install jsdom --save-dev
import { JSDOM } from 'jsdom';
describe('YourComponent', () => {
let component: YourComponent;
beforeEach(() => {
const dom = new JSDOM('');
(global as any).window = dom.window;
(global as any).document = dom.window.document;
component = new YourComponent();
});
it('should do something', () => {
// 进行测试
});
});
class WindowStub {
// 需要的 API
}
describe('YourComponent', () => {
let component: YourComponent;
beforeEach(() => {
(global as any).window = new WindowStub();
component = new YourComponent();
});
it('should do something', () => {
// 进行测试
});
});
无论选择哪种方法,都需要根据具体的代码和需求来决定最适合的解决方案。