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

19 lines
553 B
TypeScript

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