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