UIAngular/Client/src/app/components/popups/update-sermon-popup/update-sermon-popup.compone...

26 lines
711 B
TypeScript

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