[skip ci] Tests for inner binding

Signed-off-by: Mark Tolmacs <mark@lazycat.hu>
This commit is contained in:
Mark Tolmacs
2025-03-29 13:57:59 +01:00
parent e90350b7d1
commit 4ea534a732
2 changed files with 91 additions and 0 deletions

View File

@@ -467,6 +467,7 @@ export class UI {
height: initialHeight = initialWidth,
angle = 0,
points: initialPoints,
elbowed = false,
}: {
position?: number;
x?: number;
@@ -476,6 +477,7 @@ export class UI {
height?: number;
angle?: number;
points?: T extends "line" | "arrow" | "freedraw" ? LocalPoint[] : never;
elbowed?: boolean;
} = {},
): Element<T> & {
/** Returns the actual, current element from the elements array, instead
@@ -494,6 +496,17 @@ export class UI {
if (type === "text") {
mouse.reset();
mouse.click(x, y);
} else if (type === "arrow" && points.length === 2 && elbowed) {
UI.clickOnTestId("elbow-arrow");
mouse.reset();
mouse.moveTo(x + points[0][0], y + points[0][1]);
mouse.click();
mouse.moveTo(
x + points[points.length - 1][0],
y + points[points.length - 1][1],
);
mouse.click();
Keyboard.keyPress(KEYS.ESCAPE);
} else if ((type === "line" || type === "arrow") && points.length > 2) {
points.forEach((point) => {
mouse.reset();