Skip to content

Commit

Permalink
Update testCluster specifications and enable OCM test (janus-idp#1047)
Browse files Browse the repository at this point in the history
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 <guga.java@gmail.com>
  • Loading branch information
gustavolira committed Feb 29, 2024
1 parent e55258d commit fae98e3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions e2e-tests/playwright/e2e/plugins/ocm.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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,
Expand Down

0 comments on commit fae98e3

Please sign in to comment.