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