From 6e9e009a463d7c34a0b51638d430541536801abe Mon Sep 17 00:00:00 2001 From: Kevin Nadro Date: Tue, 11 Feb 2025 11:42:33 -0600 Subject: [PATCH] fix: this will fail until engine is redeployed --- e2e/playwright/testing-gizmo.spec.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/e2e/playwright/testing-gizmo.spec.ts b/e2e/playwright/testing-gizmo.spec.ts index 49f06a84b9..366665efaa 100644 --- a/e2e/playwright/testing-gizmo.spec.ts +++ b/e2e/playwright/testing-gizmo.spec.ts @@ -281,14 +281,13 @@ test.describe(`Testing gizmo, fixture-based`, () => { await page.setBodyDimensions({ width: 1000, height: 500 }) await homePage.goToModelingScene() - const u = await getUtils(page) - await u.waitForPageLoad() + await scene.waitForExecutionDone() await test.step(`Setup`, async () => { await scene.expectState({ camera: { - position: [11796.52, -39216.59, 21103.27], - target: [11796.52, -635, 3201.42], + position: [11912.6, -39586.98, 21391.22], + target: [11912.6, -635, 3317.49], }, }) }) @@ -313,7 +312,7 @@ test.describe(`Testing gizmo, fixture-based`, () => { await test.step(`Verify the camera moved`, async () => { await scene.expectState({ camera: { - position: [20785.58, -39851.59, 22171.6], + position: [20785.58, -40221.98, 22343.46], target: [20785.58, -1270, 4269.74], }, })