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