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