Refactor uploads to service, working global dd

This commit is contained in:
Michael Shamoon
2022-03-10 20:59:09 -08:00
parent 678801d612
commit 2c408ad5db
2 changed files with 23 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { UploadDocumentsService } from './upload-documents.service';
describe('UploadDocumentsService', () => {
let service: UploadDocumentsService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(UploadDocumentsService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});