From 7eff1aaac132c2daf47e0d0d270f2ccdb819cd0e Mon Sep 17 00:00:00 2001 From: Vladimir Lazar <106525396+cbr7@users.noreply.github.com> Date: Thu, 14 Nov 2024 14:00:41 +0100 Subject: [PATCH] chore(test): blocking issue was fixed (#9902) Signed-off-by: Vladimir Lazar --- .../src/specs/podman-machine-dashboard-onboarding.spec.ts | 7 +------ .../playwright/src/specs/podman-machine-onboarding.spec.ts | 7 +------ 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/tests/playwright/src/specs/podman-machine-dashboard-onboarding.spec.ts b/tests/playwright/src/specs/podman-machine-dashboard-onboarding.spec.ts index a1b8f916e2049..e74bca8a52f23 100644 --- a/tests/playwright/src/specs/podman-machine-dashboard-onboarding.spec.ts +++ b/tests/playwright/src/specs/podman-machine-dashboard-onboarding.spec.ts @@ -18,7 +18,7 @@ import { expect as playExpect, test } from '../utility/fixtures'; import { createPodmanMachineFromCLI, deletePodmanMachine } from '../utility/operations'; -import { isLinux, isMac } from '../utility/platform'; +import { isLinux } from '../utility/platform'; import { waitForPodmanMachineStartup } from '../utility/wait'; const PODMAN_MACHINE_NAME: string = 'podman-machine-default'; @@ -28,11 +28,6 @@ test.skip( 'Tests suite should not run on Linux platform or if TEST_PODMAN_MACHINE is not true', ); -test.skip( - isMac, - 'Due to issue https://github.com/containers/podman-desktop/issues/8984 which causes problems on cicd on macOs this test suite is deactived on macs until a fix is provided', -); - test.beforeAll(async ({ runner, welcomePage, page }) => { test.setTimeout(120_000); runner.setVideoAndTraceName('podman-machine-dashboard'); diff --git a/tests/playwright/src/specs/podman-machine-onboarding.spec.ts b/tests/playwright/src/specs/podman-machine-onboarding.spec.ts index 441d17754dd3b..23e3a6d00d979 100644 --- a/tests/playwright/src/specs/podman-machine-onboarding.spec.ts +++ b/tests/playwright/src/specs/podman-machine-onboarding.spec.ts @@ -28,7 +28,7 @@ import { ResourcesPage } from '../model/pages/resources-page'; import type { SettingsBar } from '../model/pages/settings-bar'; import { expect as playExpect, test } from '../utility/fixtures'; import { createPodmanMachineFromCLI, deletePodmanMachine } from '../utility/operations'; -import { isLinux, isMac } from '../utility/platform'; +import { isLinux } from '../utility/platform'; import { waitForPodmanMachineStartup } from '../utility/wait'; const PODMAN_MACHINE_STARTUP_TIMEOUT: number = 360_000; @@ -48,11 +48,6 @@ test.skip( 'Tests suite should not run on Linux platform or if TEST_PODMAN_MACHINE is not true', ); -test.skip( - isMac, - 'Due to issue https://github.com/containers/podman-desktop/issues/8984 which causes problems on cicd on macOs this test suite is deactived on macs until a fix is provided', -); - test.beforeAll(async ({ runner, welcomePage, page }) => { test.setTimeout(120_000); runner.setVideoAndTraceName('podman-machine-e2e');