From eafd10f3a918ebaf9bdbe6f5658038d83ee7c06a Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Wed, 13 May 2026 17:28:49 +0300 Subject: [PATCH] Fix tournament admin page e2e test --- e2e/tournament-staff.spec.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/e2e/tournament-staff.spec.ts b/e2e/tournament-staff.spec.ts index f36946b3a..25e7fa7d7 100644 --- a/e2e/tournament-staff.spec.ts +++ b/e2e/tournament-staff.spec.ts @@ -17,6 +17,7 @@ import { submit, test, } from "./helpers/playwright"; +import { goToTab } from "./helpers/tournament-match"; const TOURNAMENT_ID = 2; @@ -135,6 +136,8 @@ test.describe("Tournament staff", () => { url: tournamentMatchPage({ tournamentId: TOURNAMENT_ID, matchId: 2 }), }); + await goToTab(page, "join"); + await expect(roomPassSelector).toBeVisible(); }); });