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