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