123456789101112131415161718192021222324 |
- 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<GameContentComponent>;
- 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();
- });
- });
|