OpenSlides/client/src/app/site/motions/services/motion-pdf-export.service.spec.ts
Sean Engelhardt 9b61603dae Add motion to pdf converter
Adds the converstion from motion to PDF.
Uses pdfmake as the old openslides does
2019-01-18 20:25:06 +01:00

18 lines
511 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { MotionPdfExportService } from './motion-pdf-export.service';
import { E2EImportsModule } from 'e2e-imports.module';
describe('MotionPdfExportService', () => {
beforeEach(() =>
TestBed.configureTestingModule({
imports: [E2EImportsModule]
})
);
it('should be created', () => {
const service: MotionPdfExportService = TestBed.get(MotionPdfExportService);
expect(service).toBeTruthy();
});
});