OpenSlides/client/src/app/site/motions/services/statute-csv-export.service.spec.ts

18 lines
558 B
TypeScript
Raw Normal View History

2019-01-31 11:21:02 +01:00
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();
}));
});