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