first commit

This commit is contained in:
OnlyPapy98
2025-12-16 14:20:02 +01:00
commit dde2e8aebf
320 changed files with 30462 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { Layout } from './layout';
describe('Layout', () => {
let component: Layout;
let fixture: ComponentFixture<Layout>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [Layout]
})
.compileComponents();
fixture = TestBed.createComponent(Layout);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});