|
- import { async, ComponentFixture, TestBed } from '@angular/core/testing';
- import { IonicModule } from '@ionic/angular';
-
- import { MatchDetailsPage } from './match-details.page';
-
- describe('MatchDetailsPage', () => {
- let component: MatchDetailsPage;
- let fixture: ComponentFixture<MatchDetailsPage>;
-
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- declarations: [ MatchDetailsPage ],
- imports: [IonicModule.forRoot()]
- }).compileComponents();
-
- fixture = TestBed.createComponent(MatchDetailsPage);
- component = fixture.componentInstance;
- fixture.detectChanges();
- }));
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|