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