From f7c984e64be68b56304d5262c9b59a3bad35df39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Gu=CC=88nther?= Date: Fri, 6 Dec 2024 11:03:54 +0100 Subject: [PATCH] TASK Remove console logs from tests --- Tests/IntegrationTests/Fixtures/1Dimension/syncing.e2e.js | 5 ----- Tests/IntegrationTests/utils.js | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/Tests/IntegrationTests/Fixtures/1Dimension/syncing.e2e.js b/Tests/IntegrationTests/Fixtures/1Dimension/syncing.e2e.js index e4dedd01ee..bdc760cf2f 100644 --- a/Tests/IntegrationTests/Fixtures/1Dimension/syncing.e2e.js +++ b/Tests/IntegrationTests/Fixtures/1Dimension/syncing.e2e.js @@ -406,11 +406,6 @@ async function assertThatWeCannotSeePageInTree(t, pageTitle) { async function openContentTree(t) { const contentTree = ReactSelector('ToggleContentTree'); const isPanelOpen = await contentTree.getReact(({props}) => props.isPanelOpen); - if (!isPanelOpen) { - console.log('Opening content tree'); - } else { - console.log('Content tree is already open'); - } if (!isPanelOpen) { await t diff --git a/Tests/IntegrationTests/utils.js b/Tests/IntegrationTests/utils.js index 220a83ef87..cc663f04f2 100644 --- a/Tests/IntegrationTests/utils.js +++ b/Tests/IntegrationTests/utils.js @@ -124,6 +124,6 @@ export async function clearInlineText(t, selector, switchToIframe = true) { .selectEditableContent(lastEditableElement, lastEditableElement) .pressKey('ctrl+a delete'); } catch (e) { - console.log(e); + // console.log(e); } }