From fae98e3eb9e5bfa3eb3d17e919dede403f3f4270 Mon Sep 17 00:00:00 2001 From: Gustavo Lira e Silva Date: Thu, 29 Feb 2024 18:46:15 -0300 Subject: [PATCH] Update testCluster specifications and enable OCM test (#1047) The OCM (Open Cluster Management) test configurations in the e2e (end-to-end) tests have been updated with new specifications for the testCluster; CPU cores have been increased from 12 to 16, and memory size from 47Gi to 63Gi. Additionally, a previously skipped test "Navigate to Clusters and Verify OCM Clusters" has been enabled for execution. Signed-off-by: Gustavo Lira --- e2e-tests/playwright/e2e/plugins/ocm.spec.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/e2e-tests/playwright/e2e/plugins/ocm.spec.ts b/e2e-tests/playwright/e2e/plugins/ocm.spec.ts index 1e15841ac..b6b0f0f79 100644 --- a/e2e-tests/playwright/e2e/plugins/ocm.spec.ts +++ b/e2e-tests/playwright/e2e/plugins/ocm.spec.ts @@ -9,11 +9,10 @@ const clusterDetails = { clusterName: 'testCluster', status: 'Ready', platform: 'IBM', - cpuCores: '12', - memorySize: '47 Gi', + cpuCores: '16', + memorySize: '63 Gi', ocVersion: /^\d+\.\d+\.\d+$/, }; - let page: Page; test.describe.serial('Test OCM plugin', () => { let uiHelper: UIhelper; @@ -31,7 +30,7 @@ test.describe.serial('Test OCM plugin', () => { await common.loginAsGithubUser(); }); - test.skip('Navigate to Clusters and Verify OCM Clusters', async () => { + test('Navigate to Clusters and Verify OCM Clusters', async () => { await uiHelper.openSidebar('Clusters'); await uiHelper.verifyRowInTableByUniqueText(clusterDetails.clusterName, [ clusterDetails.status,