paperless-ngx/src-ui/src/app/services/rest/document-comment.service.spec.ts
2022-08-23 19:19:21 -07:00

16 lines
402 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { DocumentCommentService } from './document-comment.service';
describe('DocumentCommentService', () => {
let service: DocumentCommentService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(DocumentCommentService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});