-
Hagen Dreßler authoreda0dc334c
Forked from an inaccessible project.
import { TestBed, inject } from '@angular/core/testing';
import { CommentService } from './comment.service';
describe('CommentService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [CommentService]
});
});
it('should be created', inject([CommentService], (service: CommentService) => {
expect(service).toBeTruthy();
}));
});