OpenSlides/client/src/app/site/motions/services/motion-pdf-export.service.spec.ts
2019-07-30 09:53:14 +02:00

19 lines
512 B
TypeScript

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