fix create process from attachment

This commit is contained in:
Peter Maquiran
2024-02-15 17:11:59 +01:00
parent b7bccfa25d
commit 56b279490b
12 changed files with 304 additions and 17 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { DocumentViewerOptionService } from './document-viewer-option.service';
describe('DocumentViewerOptionService', () => {
let service: DocumentViewerOptionService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(DocumentViewerOptionService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});