From 5af85f6fc2a4c72580492dea9a110e9b9a8d3e4b Mon Sep 17 00:00:00 2001 From: mkosir Date: Wed, 31 Jan 2024 20:23:37 +0100 Subject: [PATCH] chore(deps): update dependencies --- e2e/tilt.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/tilt.spec.ts b/e2e/tilt.spec.ts index 9c96c6f2..3ebf3654 100644 --- a/e2e/tilt.spec.ts +++ b/e2e/tilt.spec.ts @@ -61,7 +61,7 @@ test('should get max values of move params when mouse is positioned at corners o expect(bottomRightParams.glareAngle).toBeGreaterThanOrEqual(44); expect(bottomRightParams.glareOpacity).toBeGreaterThanOrEqual(0.95); - await content.getByTestId('bottomLeft').hover({ position: { x: 1, y: 19 } }); + await content.getByTestId('bottomLeft').hover({ position: { x: 5, y: 20 } }); const bottomLeftParamsString = await content.getByTestId('params').innerText(); const bottomLeftParams = JSON.parse(bottomLeftParamsString) as OnMoveParams;