mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
23 lines
895 B
TypeScript
23 lines
895 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);
|
|
});
|
|
});
|