import { inject, TestBed } from '@angular/core/testing'; import { CommentService } from './comment.service'; describe('CommentService', () => { beforeEach(() => { TestBed.configureTestingModule({ providers: [CommentService] }); }); it('should ...', inject([CommentService], (service: CommentService) => { expect(service).toBeTruthy(); })); });