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