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