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