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