UNPKG

@shawngoh87/react-sketch-canvas

Version:

react-sketch-canvas - Freehand vector drawing tool for React using SVG as canvas

8 lines (6 loc) 214 B
import { line } from '../Paths'; test('should return length and angle', () => { const got = line({ x: 0, y: 0 }, { x: 0, y: 0 }); const expected = { length: 0, angle: 0 }; expect(expected).toEqual(got); });