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