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