Files
Personal-Portfolio-Website/src/app/footer/footer.component.spec.ts
T
2026-04-17 23:40:29 +02:00

24 lines
660 B
TypeScript

import type { ComponentFixture } from '@angular/core/testing';
import { TestBed } from '@angular/core/testing';
import { FooterComponent } from './footer.component';
describe('FooterComponent', (): void => {
let component: FooterComponent;
let fixture: ComponentFixture<FooterComponent>;
beforeEach(async (): Promise<void> => {
await TestBed.configureTestingModule({
imports: [FooterComponent],
}).compileComponents();
fixture = TestBed.createComponent(FooterComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', (): void => {
expect(component).toBeTruthy();
});
});