FlaskALED/frontend/src/app/common/components/popup-delete-profil/popup-delete-profil.component.spec.ts
2022-01-05 20:37:31 +01:00

25 lines
705 B
TypeScript

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