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