import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { CallQualitySampleData } from '@creedinteractive/onguard-models'; import { CallQualityRowComponent } from './call-quality-row.component'; import { CallQualityRowModule } from './call-quality-row.module'; describe('CallQualityRowComponent', () => { let component: CallQualityRowComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ imports: [CallQualityRowModule], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(CallQualityRowComponent); component = fixture.componentInstance; component.callData = CallQualitySampleData; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });