23 lines
617 B
TypeScript
23 lines
617 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { UpdateUserComponent } from './update-user.component';
|
|
|
|
describe('UpdateUserComponent', () => {
|
|
let component: UpdateUserComponent;
|
|
let fixture: ComponentFixture<UpdateUserComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [UpdateUserComponent],
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(UpdateUserComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|