chore(test): prolong afterAll hook and runner.close timeout (#16452)

Signed-off-by: Ondrej Dockal <odockal@redhat.com>
This commit is contained in:
Ondrej Dockal 2026-03-05 11:37:36 +01:00 committed by GitHub
parent 9c15cc0873
commit ffd9fee3e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View file

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

View file

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