Add climb binding validation to player start inspector tests

This commit is contained in:
2026-04-30 00:24:17 +02:00
parent 92d6220686
commit 66a58ca029

View File

@@ -357,6 +357,12 @@ describe("Player Start inspector", () => {
expect( expect(
screen.getByTestId("player-start-gamepad-binding-crouch") screen.getByTestId("player-start-gamepad-binding-crouch")
).toHaveValue("buttonEast"); ).toHaveValue("buttonEast");
expect(
screen.getByTestId("player-start-keyboard-binding-climb")
).toHaveTextContent("E");
expect(
screen.getByTestId("player-start-gamepad-binding-climb")
).toHaveValue("rightShoulder");
expect( expect(
screen.getByTestId("player-start-keyboard-binding-interact") screen.getByTestId("player-start-keyboard-binding-interact")
).toHaveTextContent("Left Mouse"); ).toHaveTextContent("Left Mouse");