mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-10 17:33:24 +01:00
26 lines
915 B
TypeScript
26 lines
915 B
TypeScript
import path from 'path';
|
|
import fs from 'fs';
|
|
import { expect, test } from '@jest/globals'; // Workaround for cypress conflict
|
|
import SVGExporter from '../../../src/components/export/SVGExporter';
|
|
import { parseXMLFile, setupBlob, exporterAssert } from './Helper';
|
|
|
|
setupBlob();
|
|
|
|
describe('SVG export test execution', () => {
|
|
test.each(
|
|
fs
|
|
.readdirSync(path.resolve(__dirname, './input/'))
|
|
.filter((f) => f.endsWith('.wxml'))
|
|
.map((filename: string) => filename.split('.')[0]),
|
|
)('Exporting %p suite', async (testName: string) => {
|
|
// Load SVG ...
|
|
const svgPath = path.resolve(__dirname, `./input/${testName}.svg`);
|
|
expect(fs.existsSync(svgPath)).toEqual(true);
|
|
const svgDocument = parseXMLFile(svgPath, 'image/svg+xml');
|
|
|
|
// Generate output ...
|
|
const exporter = new SVGExporter(svgDocument.documentElement);
|
|
await exporterAssert(testName, exporter);
|
|
});
|
|
});
|