This commit is contained in:
2020-04-20 12:46:02 +02:00
committed by smuddy
parent 4f1a12bd00
commit 0b8e2212e9
37 changed files with 2731 additions and 73 deletions

View File

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

View File

@@ -0,0 +1,10 @@
import {Injectable} from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class DocxService {
constructor() {
}
}