mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
chore(test): prolong afterAll hook and runner.close timeout (#16452)
Signed-off-by: Ondrej Dockal <odockal@redhat.com>
This commit is contained in:
parent
9c15cc0873
commit
ffd9fee3e9
2 changed files with 4 additions and 2 deletions
|
|
@ -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' }, () => {
|
||||
|
|
|
|||
|
|
@ -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' }, () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue