|
@@ -0,0 +1,26 @@
|
|
|
+import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
+import { IonicModule } from '@ionic/angular';
|
|
|
+
|
|
|
+import { ExploreContainerComponentModule } from '../explore-container/explore-container.module';
|
|
|
+
|
|
|
+import { Tab3Page } from './tab3.page';
|
|
|
+
|
|
|
+describe('Tab3Page', () => {
|
|
|
+ let component: Tab3Page;
|
|
|
+ let fixture: ComponentFixture<Tab3Page>;
|
|
|
+
|
|
|
+ beforeEach(async () => {
|
|
|
+ await TestBed.configureTestingModule({
|
|
|
+ declarations: [Tab3Page],
|
|
|
+ imports: [IonicModule.forRoot(), ExploreContainerComponentModule]
|
|
|
+ }).compileComponents();
|
|
|
+
|
|
|
+ fixture = TestBed.createComponent(Tab3Page);
|
|
|
+ component = fixture.componentInstance;
|
|
|
+ fixture.detectChanges();
|
|
|
+ });
|
|
|
+
|
|
|
+ it('should create', () => {
|
|
|
+ expect(component).toBeTruthy();
|
|
|
+ });
|
|
|
+});
|