import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { UpdateSermonPopupComponent } from './update-sermon-popup.component'; describe('UpdateSermonPopupComponent', () => { let component: UpdateSermonPopupComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ UpdateSermonPopupComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(UpdateSermonPopupComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should be created', () => { expect(component).toBeTruthy(); }); });