realistion de la page Mon Profil
This commit is contained in:
parent
4138c22051
commit
7ebacdc287
18 changed files with 702 additions and 145 deletions
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { PopupPictureProfilUrlComponent } from './popup-picture-profil-url.component';
|
||||
|
||||
describe('PopupPictureProfilUrlComponent', () => {
|
||||
let component: PopupPictureProfilUrlComponent;
|
||||
let fixture: ComponentFixture<PopupPictureProfilUrlComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ PopupPictureProfilUrlComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(PopupPictureProfilUrlComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Reference in a new issue