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