diff --git a/src/components/SVG/path.test.js b/src/components/SVG/path.test.js index 5457cf3..8f8d8d9 100644 --- a/src/components/SVG/path.test.js +++ b/src/components/SVG/path.test.js @@ -2,6 +2,9 @@ import Path from './path'; describe('Path', () => { [ + // moveTo + [ 'moveTo', { x: 5, y: 1 }, 'M5,1' ], + [ 'moveTo', { x: 5, y: 1, relative: true }, 'm5,1' ], // lineTo [ 'lineTo', { x: 5, y: 1 }, 'L5,1' ], [ 'lineTo', { x: 5, y: 0 }, 'H5' ],