2022-03-11 10:53:32 -08:00
|
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing'
|
2020-10-27 01:10:18 +01:00
|
|
|
|
2022-03-11 10:53:32 -08:00
|
|
|
import { PageHeaderComponent } from './page-header.component'
|
2020-10-27 01:10:18 +01:00
|
|
|
|
|
|
|
|
describe('PageHeaderComponent', () => {
|
2022-03-11 10:53:32 -08:00
|
|
|
let component: PageHeaderComponent
|
|
|
|
|
let fixture: ComponentFixture<PageHeaderComponent>
|
2020-10-27 01:10:18 +01:00
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
|
await TestBed.configureTestingModule({
|
2022-03-11 10:53:32 -08:00
|
|
|
declarations: [PageHeaderComponent],
|
|
|
|
|
}).compileComponents()
|
|
|
|
|
})
|
2020-10-27 01:10:18 +01:00
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2022-03-11 10:53:32 -08:00
|
|
|
fixture = TestBed.createComponent(PageHeaderComponent)
|
|
|
|
|
component = fixture.componentInstance
|
|
|
|
|
fixture.detectChanges()
|
|
|
|
|
})
|
2020-10-27 01:10:18 +01:00
|
|
|
|
|
|
|
|
it('should create', () => {
|
2022-03-11 10:53:32 -08:00
|
|
|
expect(component).toBeTruthy()
|
|
|
|
|
})
|
|
|
|
|
})
|