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