import { ComponentFixture, TestBed } from '@angular/core/testing'; import { QuestionComponent } from './question.component'; describe('QuestionComponent', () => { let component: QuestionComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ QuestionComponent ] }) .compileComponents(); fixture = TestBed.createComponent(QuestionComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });