test(e2e): add user settings nav helper

This commit is contained in:
kolaente 2026-04-21 10:44:11 +02:00 committed by kolaente
parent 2fc6f033f2
commit 726a4df539
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import type {Page} from '@playwright/test'
export async function gotoUserSettings(page: Page, section: string) {
await page.goto(`/user/settings/${section}`)
await page.waitForLoadState('networkidle')
}