OpenSlides/client/src/app/site/motions/services/motion-pdf-catalog.service.spec.ts
Sean Engelhardt 0e77ec79c2 Export a list of motions
Ports the "Motion Catalog Content Provider" to OpenSlides 3.
Categories and Prefixes are considered as before.
Updated to Code to ES6/Typescript.
Allows to export all motions from the motion list view.
2019-01-24 14:40:06 +01:00

18 lines
516 B
TypeScript

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