Angular2业力测试集@Input变量

时间:2017-07-17 12:58:36

标签: angular angular2-testing

我正在进行angular2单元测试。该组件具有输入绑定。 我尝试手动设置如下:

 fixture = TestBed.createComponent(Step2Component);
component = fixture.componentInstance;
component.notificationModel = new NotificationModel([], 'test');
fixture.detectChanges();

但它失败了。在第一行,调用组件的ngOnInit,并使用notficationModel。在那一点上,没有设置该变量。 设置绑定变量的正确方法是什么?

感谢。

0 个答案:

没有答案