Я немного новичок в написании модульных тестов для Angular и не могу понять, как написать модульные тесты для компонента с помощью директивы @Input.
Вот мой
== file.component.ts
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'app-bugs-table',
templateUrl: './bugs-table.component.html',
styleUrls: ['./bugs-table.component.scss']
})
export class BugsTableComponent implements OnInit {
// priorityData: any = [];
@Input() bugsDataService;
@Input() gridItemComponent;
constructor(
) { }
ngOnInit() {
}
ngAfterViewInit() {
this.bugsDataService.subscribe(response => {
this.bugsData = response;
})
}}
Вот мой file.component.spec.ts
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { FormsModule, ReactiveFormsModule, } from '@angular/forms';
import { HttpModule, BrowserXhr } from "@angular/http";
fdescribe('BugsTableComponent', () => {
let component: BugsTableComponent;
let fixture: ComponentFixture<BugsTableComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ BugsTableComponent ],
imports: []
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(BugsTableComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
fit('should create', () => {
expect(component).toBeTruthy();
});
});
Но происходит сбой с ошибкой:
× должен создать HeadlessChrome 69.0.3497 (Windows 10.0.0) TypeError: Невозможно прочитать свойство 'subscribe' из неопределенного
Я знаю, это потому, что bugsDataService (который можно наблюдать) не определено.Может ли кто-нибудь, пожалуйста, помогите исправить это.Пожалуйста, дайте мне знать, если вам нужна дополнительная информация.