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