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