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