Increased timeout.

This commit is contained in:
SamTV12345 2024-03-11 07:47:21 +01:00
parent c2699e4528
commit 57f114c01e
2 changed files with 2 additions and 0 deletions

View file

@ -55,5 +55,6 @@ test.describe('admin settings',()=> {
const settings = page.locator('.settings'); const settings = page.locator('.settings');
await expect(settings).not.toBeEmpty(); await expect(settings).not.toBeEmpty();
await page.waitForSelector('.menu') await page.waitForSelector('.menu')
await page.waitForTimeout(5000)
}); });
}) })

View file

@ -66,6 +66,7 @@ test.describe('Plugins page', ()=> {
await expect(installedPluginsRows).toHaveCount(1, { await expect(installedPluginsRows).toHaveCount(1, {
timeout: 15000 timeout: 15000
}) })
await page.waitForTimeout(5000)
}) })
}) })