9b61603dae
Adds the converstion from motion to PDF. Uses pdfmake as the old openslides does
18 lines
511 B
TypeScript
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();
|
|
});
|
|
});
|