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