FlaskALED/frontend/src/app/common/components/popup-delete-profil/popup-delete-profil.component.spec.ts
Yûki VACHOT a18333c2c3 Moved
2022-01-31 16:15:40 +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();
});
});