initial commit

This commit is contained in:
2023-10-15 20:03:11 +02:00
commit dc797d78ed
176 changed files with 23002 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { UploadsComponent } from './uploads.component';
describe('UploadsComponent', () => {
let component: UploadsComponent;
let fixture: ComponentFixture<UploadsComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ UploadsComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(UploadsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});