Refactoring

This commit is contained in:
Rampeur
2024-05-08 23:46:08 +02:00
parent 7c3f0c9648
commit d1870adff6
54 changed files with 227 additions and 282 deletions
@@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { DropzonesBarComponent } from './dropzones-bar.component';
describe('DropzonesBarComponent', () => {
let component: DropzonesBarComponent;
let fixture: ComponentFixture<DropzonesBarComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [DropzonesBarComponent]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(DropzonesBarComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});