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