File: /var/www/vhost/disk-apps/pwa.sports-crowd.com/src/app/pages/shopify/shopify.page.spec.ts
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { ShopifyPage } from './shopify.page';
describe('ShopifyPage', () => {
let component: ShopifyPage;
let fixture: ComponentFixture<ShopifyPage>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ShopifyPage],
imports: [IonicModule.forRoot()],
teardown: { destroyAfterEach: false }
}).compileComponents();
fixture = TestBed.createComponent(ShopifyPage);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});