import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { HeaderFooterComponent } from './header-footer.component'; describe('HeaderFooterComponent', () => { let component: HeaderFooterComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [HeaderFooterComponent], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(HeaderFooterComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });