Added a lot of components

This commit is contained in:
Lorenzo Iovino 2023-12-29 03:06:56 +01:00
parent e6f42eaa37
commit b48ab87cc6
68 changed files with 1030 additions and 8 deletions

View file

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