Files
doneit-web/src/app/Rules/process-document.service.spec.ts
T

17 lines
403 B
TypeScript
Raw Normal View History

2021-08-13 14:36:45 +01:00
import { TestBed } from '@angular/core/testing';
import { ProcessDocumentService } from './process-document.service';
describe('ProcessDocumentService', () => {
let service: ProcessDocumentService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ProcessDocumentService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});