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