lorenzoiovino.com/src/app/section/section.component.spec.ts
2023-12-29 03:06:56 +01:00

23 lines
603 B
TypeScript

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();
});
});