From a5cbfe0bfd3e653d9a1ee86ee87e8d85de73fabd Mon Sep 17 00:00:00 2001 From: Denis Golovin Date: Thu, 19 Dec 2024 14:23:34 -0800 Subject: [PATCH] fix: e2e test errors Signed-off-by: Denis Golovin --- .github/workflows/e2e-main.yaml | 14 ++++++-------- pnpm-lock.yaml | 10 +++++----- tests/playwright/package.json | 2 +- 3 files changed, 12 insertions(+), 14 deletions(-) diff --git a/.github/workflows/e2e-main.yaml b/.github/workflows/e2e-main.yaml index 59a821b2..a816e1da 100644 --- a/.github/workflows/e2e-main.yaml +++ b/.github/workflows/e2e-main.yaml @@ -59,22 +59,20 @@ jobs: # Checkout podman desktop - uses: actions/checkout@v4 with: - repository: containers/podman-desktop + repository: podman-desktop/podman-desktop ref: main path: podman-desktop + - uses: actions/setup-node@v4 + with: + node-version: 20 + - uses: pnpm/action-setup@v4 name: Install pnpm with: run_install: false package_json_file: ./podman-desktop/package.json - - uses: actions/setup-node@v4 - with: - node-version: 20 - working-directory: ./podman-desktop - cache: 'pnpm' - - name: Update podman run: | # ubuntu version from kubic repository to install podman we need (v5) @@ -116,7 +114,7 @@ jobs: - name: Execute pnpm in Bootc Extension working-directory: ./podman-desktop-extension-bootc - run: pnpm install + run: pnpm install --no-frozen-lockfile - name: Run All E2E tests working-directory: ./podman-desktop-extension-bootc diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 17e5700e..c60be4c2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -265,8 +265,8 @@ importers: specifier: ^1.49.1 version: 1.49.1 '@podman-desktop/tests-playwright': - specifier: ^1.15.0 - version: 1.15.0 + specifier: next + version: 1.16.0-202412191526-af98dd0c20c '@types/node': specifier: ^20 version: 20.17.6 @@ -1189,8 +1189,8 @@ packages: '@podman-desktop/api@1.15.0': resolution: {integrity: sha512-rYI2Fh/fRfNKtZAIz3OCk3GITJq5+oNxgU4aYVRWmPaX4Y5TSQoGr30Wwu4MGy02IQp3KY18JNe9/msWUE1MJA==} - '@podman-desktop/tests-playwright@1.15.0': - resolution: {integrity: sha512-lDNHSr6dKaECuqwtpjDJRX/2SYYvK3o6uTQv1lMzuG3+99C27MqjgBPMcCvCYhFCT7BQDMZ9nJxeMlQsa2rJUg==} + '@podman-desktop/tests-playwright@1.16.0-202412191526-af98dd0c20c': + resolution: {integrity: sha512-qWrHO+aApXgBHXhV3HdgLPfCukDpzgdnZIDlqjYVo4s6OX0XcaoShM5qZi6sjXJTWe+YC7xv0VFdrTo4K5jd2A==} '@podman-desktop/ui-svelte@1.15.0': resolution: {integrity: sha512-CK6pYOe5+CW6u55KPpDhTRAELRkCJOUXDxS4+2lzyKpE9naAHOlozSoCRHuH/KPbPg66wPooCg/u2+qJjDyM7Q==} @@ -5028,7 +5028,7 @@ snapshots: '@podman-desktop/api@1.15.0': {} - '@podman-desktop/tests-playwright@1.15.0': {} + '@podman-desktop/tests-playwright@1.16.0-202412191526-af98dd0c20c': {} '@podman-desktop/ui-svelte@1.15.0(svelte-fa@4.0.3(svelte@5.14.5))(svelte@5.14.5)': dependencies: diff --git a/tests/playwright/package.json b/tests/playwright/package.json index 02929fcd..6e360d02 100644 --- a/tests/playwright/package.json +++ b/tests/playwright/package.json @@ -11,7 +11,7 @@ "license": "Apache-2.0", "devDependencies": { "@playwright/test": "^1.49.1", - "@podman-desktop/tests-playwright": "^1.15.0", + "@podman-desktop/tests-playwright": "next", "@types/node": "^20", "electron": "^33.2.1", "typescript": "^5.7.2",