Extract encoding as common code.

This commit is contained in:
Paulo Gustavo Veiga
2022-02-01 19:13:44 -08:00
parent 5d52bbfc54
commit 1cbd5d3f2e
10 changed files with 51 additions and 51 deletions

View File

@ -26,7 +26,7 @@ describe('SVG export test execution', () => {
const svgDocument = parseXMLFile(svgPath, 'image/svg+xml');
// Generate output ...
const exporter = new SVGExporter(mindmap, svgDocument.documentElement);
const exporter = new SVGExporter(svgDocument.documentElement);
await exporterAssert(testName, exporter);
});
});