import { ComponentFixture, TestBed } from '@angular/core/testing'; import { FooterComponent } from '../components'; describe('Footer component', () => { let component: FooterComponent; let fixture: ComponentFixture; beforeEach(() => { TestBed.configureTestingModule({ declarations: [ FooterComponent, ], }).compileComponents(); fixture = TestBed.createComponent(FooterComponent); component = fixture.componentInstance; }); it('when ... should ...', () => { expect(FooterComponent).toBeDefined(); }); });