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