diff --git a/src/frontend/tests/pui_basic.spec.ts b/src/frontend/tests/pui_basic.spec.ts index 9d2eb43cd1..b1131c0431 100644 --- a/src/frontend/tests/pui_basic.spec.ts +++ b/src/frontend/tests/pui_basic.spec.ts @@ -4,7 +4,7 @@ import { classicUrl, user } from './defaults.js'; test('PUI - Basic test via django', async ({ page }) => { await page.goto(`${classicUrl}/platform/`); await expect(page).toHaveTitle('InvenTree Demo Server'); - await page.waitForURL('**/platform/'); + await page.waitForURL('**/platform/*'); await page.getByLabel('username').fill(user.username); await page.getByLabel('password').fill(user.password); await page.getByRole('button', { name: 'Log in' }).click(); @@ -17,7 +17,7 @@ test('PUI - Basic test via django', async ({ page }) => { test('PUI - Basic test', async ({ page }) => { await page.goto('./platform/'); await expect(page).toHaveTitle('InvenTree'); - await page.waitForURL('**/platform/'); + await page.waitForURL('**/platform/*'); await page.getByLabel('username').fill(user.username); await page.getByLabel('password').fill(user.password); await page.getByRole('button', { name: 'Log in' }).click();