Update e2e test for player start position input

This commit is contained in:
2026-03-31 04:28:50 +02:00
parent 3a52651e3a
commit d192fed17c

View File

@@ -22,10 +22,11 @@ test("user can place PlayerStart, enter run mode, and spawn from it", async ({ p
await page.getByTestId("place-player-start").click();
await page.getByTestId("player-start-position-x").fill("4");
await page.getByTestId("player-start-position-y").fill("0");
await page.getByTestId("player-start-position-x").press("Tab");
await page.getByTestId("player-start-position-z").fill("-2");
await page.getByTestId("player-start-position-z").press("Tab");
await page.getByTestId("player-start-yaw").fill("90");
await page.getByTestId("apply-player-start").click();
await page.getByTestId("player-start-yaw").press("Tab");
await page.getByTestId("enter-run-mode").click();