13 lines
350 B
TypeScript
13 lines
350 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { CommentService } from './comment.service';
|
|
|
|
describe('CommentService', () => {
|
|
beforeEach(() => TestBed.configureTestingModule({}));
|
|
|
|
it('should be created', () => {
|
|
const service: CommentService = TestBed.get(CommentService);
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|