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