You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 line
633 B

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