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