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