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