Skip to content
Snippets Groups Projects
Commit a0dc334c authored by Hagen Dreßler's avatar Hagen Dreßler
Browse files

Add service comment

parent 00f79ea6
No related merge requests found
......@@ -11,3 +11,6 @@
<router-outlet></router-outlet>
</div>
</div>
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();
}));
});
import { Injectable } from '@angular/core';
@Injectable()
export class CommentService {
constructor() { }
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment