From 1e772e70f50b3f646bb72f1d29e83aef61746833 Mon Sep 17 00:00:00 2001 From: Daniel Villanueva Date: Wed, 18 Sep 2024 19:03:40 +0200 Subject: [PATCH] chore: increase timeout on pull-image-page (#8940) * chore: increase timeout on pull-image-page Signed-off-by: Daniel Villanueva * chore: swap timeout location Signed-off-by: Daniel Villanueva --------- Signed-off-by: Daniel Villanueva --- tests/playwright/src/specs/volume-smoke.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/playwright/src/specs/volume-smoke.spec.ts b/tests/playwright/src/specs/volume-smoke.spec.ts index 095024744f860..de43e229f6057 100644 --- a/tests/playwright/src/specs/volume-smoke.spec.ts +++ b/tests/playwright/src/specs/volume-smoke.spec.ts @@ -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(); @@ -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)