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