OpenSlides/client/src/app/site/motions/services/motion-xlsx-export.service.spec.ts
Sean Engelhardt a973ad1719 Export motions as excel document (.xlsx)
Adds exceljs library.
Extends the "motion export dialog" to support xlsx export with a specific set of rules similar
to CSV
2019-04-02 14:23:01 +02:00

18 lines
516 B
TypeScript

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