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