Skip to content

Commit 6c963c0

Browse files
authored
chore(test): wait more time for image availbility (podman-desktop#10645)
Signed-off-by: Vladimir Lazar <[email protected]>
1 parent b462472 commit 6c963c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/playwright/src/specs/volume-smoke.spec.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@ test.describe.serial('Volume workflow verification', { tag: '@smoke' }, () => {
140140
let images = await navigationBar.openImages();
141141
const pullImagePage = await images.openPullImage();
142142
images = await pullImagePage.pullImage(imageToPull, imageTag, 120_000);
143-
await playExpect.poll(async () => await images.waitForImageExists(imageToPull)).toBeTruthy();
143+
await playExpect
144+
.poll(async () => await images.waitForImageExists(imageToPull, 30_000), { timeout: 0 })
145+
.toBeTruthy();
144146

145147
//start a container from the image (generates 4 new volumes)
146148
const imageDetails = await images.openImageDetails(imageToPull);

0 commit comments

Comments
 (0)