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