Total document

This commit is contained in:
Peter Maquiran
2021-08-18 18:31:35 +01:00
parent f273201d74
commit b2373a5546
10 changed files with 77 additions and 13 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { TotalDocumentService } from './total-document.service';
describe('TotalDocumentService', () => {
let service: TotalDocumentService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(TotalDocumentService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});