Skip to content

Commit

Permalink
chore: increase timeout on pull-image-page (podman-desktop#8940)
Browse files Browse the repository at this point in the history
* chore: increase timeout on pull-image-page

Signed-off-by: Daniel Villanueva <[email protected]>

* chore: swap timeout location

Signed-off-by: Daniel Villanueva <[email protected]>

---------

Signed-off-by: Daniel Villanueva <[email protected]>
  • Loading branch information
danivilla9 authored Sep 18, 2024
1 parent 3791666 commit 1e772e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/playwright/src/specs/volume-smoke.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ test.describe.serial('Volume workflow verification @smoke', () => {
});

test('Create volumes from bootc-image-builder', async ({ navigationBar }) => {
test.setTimeout(150000);
test.setTimeout(210000);

//count the number of existing volumes
let volumesPage = await navigationBar.openVolumes();
Expand All @@ -119,7 +119,7 @@ test.describe.serial('Volume workflow verification @smoke', () => {
//pull image from quay.io/centos-bootc/bootc-image-builder
let images = await navigationBar.openImages();
const pullImagePage = await images.openPullImage();
images = await pullImagePage.pullImage(imageToPull, imageTag);
images = await pullImagePage.pullImage(imageToPull, imageTag, 120000);
await playExpect.poll(async () => await images.waitForImageExists(imageToPull)).toBeTruthy();

//start a container from the image (generates 4 new volumes)
Expand Down

0 comments on commit 1e772e7

Please sign in to comment.