FlaskALED/frontend/src/app/admin/userList/popup-create-person/popup-create-person.component.spec.ts
2021-12-08 08:36:27 +01:00

25 lines
709 B
TypeScript

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