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