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