25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
661 B

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