OpenSlides/client/src/app/site/motions/services/statute-csv-export.service.spec.ts
2019-01-31 14:10:39 +01:00

18 lines
558 B
TypeScript

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