这个错误通常表示在使用Jest测试Angular应用程序时,使用了ES6模块化语法(import / export)而不是CommonJS语法(require / module.exports)。解决这个问题的方法是将测试文件转换为使用CommonJS语法的格式。
以下是一种可能的解决方法:
确保你的测试文件以.spec.ts
结尾,例如example.spec.ts
。
在测试文件的顶部添加以下代码,以告诉Jest使用CommonJS语法:
// 取消注释下面的代码,使其成为你的测试文件的第一行
// @ts-expect-error
export {};
// 然后使用 require 语法引入需要测试的模块
const exampleModule = require('./example.module');
// 接下来,使用 require 语法引入需要测试的组件
const exampleComponent = require('./example.component').ExampleComponent;
import
语句为require
语句,例如:// 替换下面的代码
import { TestBed } from '@angular/core/testing';
// 为
const { TestBed } = require('@angular/core/testing');
// 替换下面的代码
describe('ExampleComponent', () => {
let component: ExampleComponent;
let fixture: ComponentFixture;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ExampleComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ExampleComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
// 为
describe('ExampleComponent', () => {
let component;
let fixture;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ exampleComponent.ExampleComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(exampleComponent.ExampleComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
通过这些修改,你应该能够解决“SyntaxError: Cannot use import statement outside a module”错误,并且能够成功运行使用Jest进行测试的Angular应用程序。