import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { IonicModule } from '@ionic/angular'; import { GameContentComponent } from './game-content.component'; describe('GameContentComponent', () => { let component: GameContentComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [ GameContentComponent ], imports: [IonicModule.forRoot()] }).compileComponents(); fixture = TestBed.createComponent(GameContentComponent); component = fixture.componentInstance; fixture.detectChanges(); })); it('should create', () => { expect(component).toBeTruthy(); }); });