Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tests/playwright/src/ai-lab-extension.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import {
isLinux,
isMac,
isCI,
resetPodmanMachinesFromCLI,
} from '@podman-desktop/tests-playwright';
import type { AILabDashboardPage } from './model/ai-lab-dashboard-page';
import type { AILabRecipesCatalogPage } from './model/ai-lab-recipes-catalog-page';
Expand Down Expand Up @@ -107,7 +108,8 @@ test.beforeAll(async ({ runner, welcomePage, page }) => {
});

test.afterAll(async ({ runner }) => {
test.setTimeout(120_000);
test.setTimeout(180_000);
await resetPodmanMachinesFromCLI();
await runner.close();
});

Expand Down
Loading