单元测试 – 角度2单元测试 – @ViewChild未定义
发布时间:2020-12-17 07:41:05 所属栏目:安全 来源:网络整理
导读:我正在写一个角度2单位测试.我有一个@ViewChild子组件,我需要在组件初始化后识别.在这种情况下,这是一个来自ng2-bootstrap库的Timepicker组件,虽然具体细节不重要.在检测到Changes()之后,子组件实例仍然未定义. 伪代码: @Component({ template: ` form time
|
我正在写一个角度2单位测试.我有一个@ViewChild子组件,我需要在组件初始化后识别.在这种情况下,这是一个来自ng2-bootstrap库的Timepicker组件,虽然具体细节不重要.在检测到Changes()之后,子组件实例仍然未定义.
伪代码: @Component({
template: `
<form>
<timepicker
#timepickerChild
[(ngModel)]="myDate">
</timepicker>
</form>
`
})
export class ExampleComponent implements OnInit {
@ViewChild('timepickerChild') timepickerChild: TimepickerComponent;
public myDate = new Date();
}
// Spec
describe('Example Test',() => {
let exampleComponent: ExampleComponent;
let fixture: ComponentFixture<ExampleComponent>;
beforeEach(() => {
TestBed.configureTestingModel({
// ... whatever needs to be configured
});
fixture = TestBed.createComponent(ExampleComponent);
});
it('should recognize a timepicker'. async(() => {
fixture.detectChanges();
const timepickerChild: Timepicker = fixture.componentInstance.timepickerChild;
console.log('timepickerChild',timepickerChild)
}));
});
伪代码按预期工作,直到您到达控制台日志. timepickerChild未定义.为什么会发生这种情况?
我认为它应该有效也许你忘了在配置中导入一些模块.以下是完整的测试代码:
import { TestBed,ComponentFixture,async } from '@angular/core/testing';
import { Component,DebugElement } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { ExampleComponent } from './test.component';
import { TimepickerModule,TimepickerComponent } from 'ng2-bootstrap/ng2-bootstrap';
describe('Example Test',() => {
let exampleComponent: ExampleComponent;
let fixture: ComponentFixture<ExampleComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [FormsModule,TimepickerModule.forRoot()],declarations: [
ExampleComponent
]
});
fixture = TestBed.createComponent(ExampleComponent);
});
it('should recognize a timepicker',async(() => {
fixture.detectChanges();
const timepickerChild: TimepickerComponent = fixture.componentInstance.timepickerChild;
console.log('timepickerChild',timepickerChild);
expect(timepickerChild).toBeDefined();
}));
});
Plunker Example (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
