diff --git a/tests/playwright/src/special-specs/installation/podman-installer.spec.ts b/tests/playwright/src/special-specs/installation/podman-installer.spec.ts index 5df44537c92..68398346207 100644 --- a/tests/playwright/src/special-specs/installation/podman-installer.spec.ts +++ b/tests/playwright/src/special-specs/installation/podman-installer.spec.ts @@ -41,7 +41,8 @@ test.beforeAll(async ({ page, runner, welcomePage }) => { }); test.afterAll(async ({ runner }) => { - await runner.close(); + test.setTimeout(120_000); + await runner.close(45_000); }); test.describe.serial('Podman installer integration in Podman Desktop', { tag: '@update-install' }, () => { diff --git a/tests/playwright/src/special-specs/installation/update-install.spec.ts b/tests/playwright/src/special-specs/installation/update-install.spec.ts index 748033557b6..dd702b77fd4 100644 --- a/tests/playwright/src/special-specs/installation/update-install.spec.ts +++ b/tests/playwright/src/special-specs/installation/update-install.spec.ts @@ -49,7 +49,8 @@ test.beforeAll(async ({ runner, page, statusBar }) => { }); test.afterAll(async ({ runner }) => { - await runner.close(); + test.setTimeout(120_000); + await runner.close(45_000); }); test.describe.serial('Podman Desktop Update installation', { tag: '@update-install' }, () => {