UIAngular/Client/src/app/components/missionary-form-page/missionary-form-page.compon...

26 lines
714 B
TypeScript

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