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