game-content.component.spec.ts 756 B

123456789101112131415161718192021222324
  1. import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
  2. import { IonicModule } from '@ionic/angular';
  3. import { GameContentComponent } from './game-content.component';
  4. describe('GameContentComponent', () => {
  5. let component: GameContentComponent;
  6. let fixture: ComponentFixture<GameContentComponent>;
  7. beforeEach(waitForAsync(() => {
  8. TestBed.configureTestingModule({
  9. declarations: [ GameContentComponent ],
  10. imports: [IonicModule.forRoot()]
  11. }).compileComponents();
  12. fixture = TestBed.createComponent(GameContentComponent);
  13. component = fixture.componentInstance;
  14. fixture.detectChanges();
  15. }));
  16. it('should create', () => {
  17. expect(component).toBeTruthy();
  18. });
  19. });