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