import { parseSvg } from './parser.js';
import { stringifySvg } from './stringifier.js';
const input = ``;
const expected = ``;
test('a text preserved', () => {
const parsed = parseSvg(input);
const actual = stringifySvg(parsed, {});
expect(actual).toBe(expected);
});