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