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