OpenSlides/client/src/app/site/users/services/user-pdf-export.service.spec.ts

19 lines
502 B
TypeScript
Raw Normal View History

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