|
@@ -3,19 +3,19 @@ import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
import { ExploreContainerComponentModule } from '../explore-container/explore-container.module';
|
|
|
|
|
|
-import { Tab3Page } from './tab3.page';
|
|
|
+import { GamePage } from './game.page';
|
|
|
|
|
|
-describe('Tab3Page', () => {
|
|
|
- let component: Tab3Page;
|
|
|
- let fixture: ComponentFixture<Tab3Page>;
|
|
|
+describe('GamePage', () => {
|
|
|
+ let component: GamePage;
|
|
|
+ let fixture: ComponentFixture<GamePage>;
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
await TestBed.configureTestingModule({
|
|
|
- declarations: [Tab3Page],
|
|
|
+ declarations: [GamePage],
|
|
|
imports: [IonicModule.forRoot(), ExploreContainerComponentModule]
|
|
|
}).compileComponents();
|
|
|
|
|
|
- fixture = TestBed.createComponent(Tab3Page);
|
|
|
+ fixture = TestBed.createComponent(GamePage);
|
|
|
component = fixture.componentInstance;
|
|
|
fixture.detectChanges();
|
|
|
});
|