Change test to auto-retry assertion

This makes the firefox version as reliable as the chromium one.
This commit is contained in:
John Whitlock 2024-09-10 09:54:58 -05:00
Родитель 7de99b58b7
Коммит 37a66e8a2c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 082C735D154FB750
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -15,7 +15,7 @@ test.describe("Premium Relay - Purchase Premium Flow, Desktop", () => {
page,
}) => {
await dashboardPage.upgrade();
expect(page.url()).toContain("/premium/");
expect(page).toHaveURL("/premium/#pricing");
});
});
@ -31,6 +31,6 @@ test.describe("Premium Relay - Purchase Premium Flow, Desktop - Visual Regressio
page,
}) => {
await dashboardPage.upgradeNow();
expect(page.url()).toContain("premium");
expect(page).toHaveURL("/premium/#pricing");
});
});