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