|
123456789101112131415161718192021222324 |
- import { async, ComponentFixture, TestBed } from '@angular/core/testing';
- import { IonicModule } from '@ionic/angular';
-
- import { QuizPage } from './quiz.page';
-
- describe('QuizPage', () => {
- let component: QuizPage;
- let fixture: ComponentFixture<QuizPage>;
-
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- declarations: [ QuizPage ],
- imports: [IonicModule.forRoot()]
- }).compileComponents();
-
- fixture = TestBed.createComponent(QuizPage);
- component = fixture.componentInstance;
- fixture.detectChanges();
- }));
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|