OpenSlides/client/src/app/site/users/services/user-pdf-export.service.spec.ts
2019-01-29 18:52:40 +01:00

18 lines
501 B
TypeScript

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