import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ModalDescriptionListComponent } from './modal-description-list.component'; describe('ModalDescriptionListComponent', () => { let component: ModalDescriptionListComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ ModalDescriptionListComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(ModalDescriptionListComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });