gpt4 book ai didi

angular - 模块 'DecoratorFactory' 导入的意外值 'DynamicTestModule' - karma-jasmine

转载 作者:太空狗 更新时间:2023-10-29 17:59:28 26 4
gpt4 key购买 nike

我在创建测试组件实例时遇到错误。

let comp: TaskviewComponent;
let fixture: ComponentFixture;
let deTaskTitle: DebugElement;
let elSub: HTMLElement;

describe('TaskviewComponent', () => {

beforeEach( () => {
TestBed.configureTestingModule({
declarations: [
TaskviewComponent
],
imports: [
NgModule,
RouterTestingModule,
TranslateModule.forRoot(),
],
providers: [
RestDataService,
Restangular,
{provide: OAuthService, useClass: OAuthServicMock},
{provide: ComponentFixtureAutoDetect, useValue: true},
{provide: UserInfoService, useClass: UserInfoServiceMock},
{
provide: LocalStorageService, //provide: LOCAL_STORAGE_SERVICE_CONFIG,
useValue: {
prefix: ApplicationConstants.ANGULAR2_LOCAL_STORAGE_ID,
storageType: 'sessionStorage'
}
}],,

})
fixture = TestBed.createComponent(TaskviewComponent);
comp = fixture.componentInstance;
deTaskTitle = fixture.debugElement.query((By.css('.Subject')));
elSub = deTaskTitle.nativeElement;

});

it('should have a subject', () => {
expect(elSub.textContent).toContain('Client Data Maintenance2 ');
});
});

我收到错误:模块“DynamicTestModule”导入的意外值“DecoratorFactory”错误。我注意到如果我删除“fixture = TestBed.createComponent(TaskviewComponent);”错误将得到解决。但这不会创建测试组件。此外,我注意到如果我不在 imports[] 中包含 NgModule,则无法识别 Ngmodel、datepicker 等元素。

最佳答案

您不能导入“NgModule”,因为它是装饰器而不是模块。

关于angular - 模块 'DecoratorFactory' 导入的意外值 'DynamicTestModule' - karma-jasmine,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41277642/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com