import { TestBed, TestModuleMetadata } from '@angular/core/testing'; import { setUpTestBed } from '@testing/common.spec'; import { HeaderComponent } from './header.component'; describe('Layout: Header', () => { setUpTestBed({ declarations: [ HeaderComponent ] }); it('should create an instance', () => { const fixture = TestBed.createComponent(HeaderComponent); const comp = fixture.debugElement.componentInstance; expect(comp).toBeTruthy(); }); });