mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-05-24 10:18:53 +00:00
chore(tests): prolong the timeout for podman to start up (#8365)
Signed-off-by: Ondrej Dockal <odockal@redhat.com>
This commit is contained in:
parent
e0c609a52d
commit
5a5bbc682b
2 changed files with 2 additions and 2 deletions
|
|
@ -285,7 +285,7 @@ describe('Verification of container creation workflow', async () => {
|
|||
await containersPage.pruneContainers();
|
||||
for (const container of containerList) {
|
||||
await playExpect
|
||||
.poll(async () => await containersPage.containerExists(container), { timeout: 15000 })
|
||||
.poll(async () => await containersPage.containerExists(container), { timeout: 30000 })
|
||||
.toBeFalsy();
|
||||
}
|
||||
}, 120000);
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ export async function executeWithTimeout(
|
|||
});
|
||||
}
|
||||
|
||||
export async function waitForPodmanMachineStartup(page: Page, timeoutOut = 15000): Promise<void> {
|
||||
export async function waitForPodmanMachineStartup(page: Page, timeoutOut = 30000): Promise<void> {
|
||||
const dashboardPage = await new NavigationBar(page).openDashboard();
|
||||
await playExpect(dashboardPage.heading).toBeVisible();
|
||||
await waitUntil(async () => await dashboardPage.podmanStatusLabel.isVisible(), {
|
||||
|
|
|
|||
Loading…
Reference in a new issue