Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 0 additions & 8 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,6 @@ jobs:
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1

# ==============================================
# Installing Podman
# ==============================================
- name: Install Podman v5 using external action
uses: redhat-actions/podman-install@15cb93f5a6b78a758fd8f4d1cecbf6651d4bcea3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Revert unprivileged user namespace restrictions in Ubuntu 24.04
if: runner.os == 'Linux'
run: |
Expand Down
10 changes: 2 additions & 8 deletions tests/playwright/src/extension.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,7 @@
***********************************************************************/

import type { ExtensionsPage } from '@podman-desktop/tests-playwright';
import {
expect as playExpect,
test,
RunnerOptions,
waitForPodmanMachineStartup,
} from '@podman-desktop/tests-playwright';
import { expect as playExpect, test, RunnerOptions } from '@podman-desktop/tests-playwright';
import { KubernetesDashboardDetailsPage } from './model/kd-details-page';

const EXTENSION_OCI_IMAGE =
Expand Down Expand Up @@ -53,12 +48,11 @@ test.use({
}),
});

test.beforeAll(async ({ runner, welcomePage, page }) => {
test.beforeAll(async ({ runner, welcomePage }) => {
test.setTimeout(80_000);

runner.setVideoAndTraceName('kubernetes-dashboard-e2e');
await welcomePage.handleWelcomePage(true);
await waitForPodmanMachineStartup(page, 80_000); // default is 30s let's increase that to 80s
});

test.afterAll(async ({ runner }) => {
Expand Down