diff --git a/tests/e2e/specs/dashboard-samples/StartWorkspaceUsingDesktopEditors.spec.ts b/tests/e2e/specs/dashboard-samples/StartWorkspaceUsingDesktopEditors.spec.ts index 2bf18cb08a6..c02a963ff50 100644 --- a/tests/e2e/specs/dashboard-samples/StartWorkspaceUsingDesktopEditors.spec.ts +++ b/tests/e2e/specs/dashboard-samples/StartWorkspaceUsingDesktopEditors.spec.ts @@ -42,13 +42,11 @@ suite('Check all editors with all samples', function (): void { if (selectAllEditors) { editorsForCheck = Array.from(ALL_EDITORS.values()); - Logger.info('SELECT_ALL_EDITORS is true - running tests for all editors'); } else { editorsForCheck = Array.from(ALL_EDITORS.values()).filter((editor): boolean => { const envValue: string | undefined = process.env[editor.environmentId]; return envValue === 'true'; }); - Logger.info(`Running tests for selected editors: ${editorsForCheck.map((e): string => e.name).join(', ')}`); if (editorsForCheck.length === 0) { assert.fail('No editors selected via environment variables'); @@ -191,7 +189,6 @@ suite('Check all editors with all samples', function (): void { editorsForCheck.forEach((editor): void => { if (BASE_TEST_CONSTANTS.IS_CLUSTER_DISCONNECTED()) { - Logger.info('Test cluster is disconnected. Using url for airgap cluster.'); gitRepoUrlsToCheckAirgap.forEach((url): void => { test(`Test start of ${editor.name} with ubi url: ${url}`, async function (): Promise { await testWorkspaceStartup(editor.xpath, editor.type, url, true); @@ -207,7 +204,7 @@ suite('Check all editors with all samples', function (): void { }); teardown('Delete DevWorkspace', async function (): Promise { - Logger.info('Delete DevWorkspace. After each test.'); + Logger.debug('Delete DevWorkspace. After each test.'); if (currentTabHandle !== 'undefined') { await browserTabsUtil.switchToWindow(currentTabHandle); } @@ -216,7 +213,7 @@ suite('Check all editors with all samples', function (): void { await browserTabsUtil.closeAllTabsExceptCurrent(); if (WorkspaceHandlingTests.getWorkspaceName() !== 'undefined') { - Logger.info('Workspace name is defined. Deleting workspace...'); + Logger.debug('Workspace name is defined. Deleting workspace...'); await dashboard.deleteStoppedWorkspaceByUI(WorkspaceHandlingTests.getWorkspaceName()); }