mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
Function rename fix in tests
This commit is contained in:
parent
550c874c9b
commit
fb113e2054
1 changed files with 2 additions and 3 deletions
|
@ -17,9 +17,8 @@ import { isLinearElement } from "../element/typeChecks";
|
||||||
import { LinearElementEditor } from "../element/linearElementEditor";
|
import { LinearElementEditor } from "../element/linearElementEditor";
|
||||||
import { arrayToMap } from "../utils";
|
import { arrayToMap } from "../utils";
|
||||||
import type { LocalPoint } from "../../math";
|
import type { LocalPoint } from "../../math";
|
||||||
import { pointFrom } from "../../math";
|
import { pointExtent, pointFrom } from "../../math";
|
||||||
import { resizeSingleElement } from "../element/resizeElements";
|
import { resizeSingleElement } from "../element/resizeElements";
|
||||||
import { getSizeFromPoints } from "../points";
|
|
||||||
|
|
||||||
ReactDOM.unmountComponentAtNode(document.getElementById("root")!);
|
ReactDOM.unmountComponentAtNode(document.getElementById("root")!);
|
||||||
|
|
||||||
|
@ -337,7 +336,7 @@ describe("line element", () => {
|
||||||
|
|
||||||
expect(element.points[0]).toEqual([0, 0]);
|
expect(element.points[0]).toEqual([0, 0]);
|
||||||
|
|
||||||
const { width, height } = getSizeFromPoints(element.points);
|
const { width, height } = pointExtent(element.points);
|
||||||
expect(width).toBe(element.width);
|
expect(width).toBe(element.width);
|
||||||
expect(height).toBe(element.height);
|
expect(height).toBe(element.height);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue