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