chore(tests): prolong the timeout for podman to start up (#8365)

Signed-off-by: Ondrej Dockal <odockal@redhat.com>
This commit is contained in:
Ondrej Dockal 2024-08-13 09:13:13 +02:00 committed by GitHub
parent e0c609a52d
commit 5a5bbc682b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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(), {