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