Un début d'ajout pour uploader des images

This commit is contained in:
Sébastien André
2020-05-26 19:10:25 +02:00
parent f21bda7d7b
commit 6ea906f80f
8 changed files with 165 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ListOfImagesComponent } from './list-of-images.component';
describe('ListOfImagesComponent', () => {
let component: ListOfImagesComponent;
let fixture: ComponentFixture<ListOfImagesComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ListOfImagesComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ListOfImagesComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});