update flip tests

This commit is contained in:
Ryan Di 2023-12-21 17:33:29 +08:00
parent 795511ee6b
commit 0cbf244bd8
2 changed files with 3 additions and 7 deletions

View File

@ -691,9 +691,6 @@ export const resizeMultipleElements = (
targetElements.map(({ orig }) => orig).concat(boundTextElements), targetElements.map(({ orig }) => orig).concat(boundTextElements),
); );
// const originalHeight = maxY - minY;
// const originalWidth = maxX - minX;
const direction = transformHandleType; const direction = transformHandleType;
const mapDirectionsToAnchors: Record<typeof direction, Point> = { const mapDirectionsToAnchors: Record<typeof direction, Point> = {

View File

@ -18,7 +18,7 @@ import {
FileId, FileId,
} from "../element/types"; } from "../element/types";
import { newLinearElement } from "../element"; import { newLinearElement } from "../element";
import { Excalidraw } from "../index"; import { Excalidraw, isLinearElement } from "../index";
import { mutateElement } from "../element/mutateElement"; import { mutateElement } from "../element/mutateElement";
import { NormalizedZoomValue } from "../types"; import { NormalizedZoomValue } from "../types";
import { ROUNDNESS } from "../constants"; import { ROUNDNESS } from "../constants";
@ -198,11 +198,10 @@ const checkElementsBoundingBox = async (
const [x12, y12, x22, y22] = getElementAbsoluteCoords(element2); const [x12, y12, x22, y22] = getElementAbsoluteCoords(element2);
debugger;
await waitFor(() => { await waitFor(() => {
// Check if width and height did not change // Check if width and height did not change
expect(x2 - x1).toBeCloseTo(x22 - x12, -1); expect(Math.abs(x2 - x1 - (x22 - x12))).toBeLessThanOrEqual(toleranceInPx);
expect(y2 - y1).toBeCloseTo(y22 - y12, -1); expect(Math.abs(y2 - y1 - (y22 - y12))).toBeLessThanOrEqual(toleranceInPx);
}); });
}; };