Add setup meetting from document modal

This commit is contained in:
Peter Maquiran
2021-07-29 10:13:39 +01:00
parent 554000ab4c
commit 022bbbec38
16 changed files with 1082 additions and 21 deletions
+16
View File
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { DocumentService } from './document.service';
describe('DocumentService', () => {
let service: DocumentService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(DocumentService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});