This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a commit to branch 3730-upgrade-design-system-to-material-3
in repository https://gitbox.apache.org/repos/asf/streampipes.git


The following commit(s) were added to 
refs/heads/3730-upgrade-design-system-to-material-3 by this push:
     new 316ad163d2 fix: Fix nightly builds after upgrading to material 3
316ad163d2 is described below

commit 316ad163d2ad2c9c152753e57b91ae1ccd630d1d
Author: Philipp Zehnder <[email protected]>
AuthorDate: Thu Sep 11 10:17:11 2025 +0200

    fix: Fix nightly builds after upgrading to material 3
---
 ui/cypress/support/utils/connect/ConnectUtils.ts              | 2 +-
 ui/cypress/tests/connect/compact/uiConfiguration.spec.ts      | 2 +-
 ui/cypress/tests/connect/createAdapterWithoutStarting.spec.ts | 2 --
 3 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/ui/cypress/support/utils/connect/ConnectUtils.ts 
b/ui/cypress/support/utils/connect/ConnectUtils.ts
index 6c74bb65fe..4841a01e19 100644
--- a/ui/cypress/support/utils/connect/ConnectUtils.ts
+++ b/ui/cypress/support/utils/connect/ConnectUtils.ts
@@ -199,7 +199,7 @@ export class ConnectUtils {
 
         // Deselect auto start of adapter
         if (!adapterInput.startAdapter) {
-            ConnectBtns.startAdapterNowCheckbox().parent().click();
+            ConnectBtns.startAdapterNowCheckbox().click();
         }
 
         ConnectBtns.adapterSettingsStartAdapter().click();
diff --git a/ui/cypress/tests/connect/compact/uiConfiguration.spec.ts 
b/ui/cypress/tests/connect/compact/uiConfiguration.spec.ts
index 798d8a8caf..719bb8c663 100644
--- a/ui/cypress/tests/connect/compact/uiConfiguration.spec.ts
+++ b/ui/cypress/tests/connect/compact/uiConfiguration.spec.ts
@@ -36,7 +36,7 @@ describe('Test Compact Adapters', () => {
         ConnectUtils.addAdapter(adapterInput);
 
         // Validate code editor in start dialog
-        ConnectBtns.showCodeCheckbox().parent().click();
+        ConnectBtns.showCodeCheckbox().click();
         validateCodeEditor();
 
         ConnectUtils.startAdapter(adapterInput);
diff --git a/ui/cypress/tests/connect/createAdapterWithoutStarting.spec.ts 
b/ui/cypress/tests/connect/createAdapterWithoutStarting.spec.ts
index 3a5fe0b225..ffd9adb48b 100644
--- a/ui/cypress/tests/connect/createAdapterWithoutStarting.spec.ts
+++ b/ui/cypress/tests/connect/createAdapterWithoutStarting.spec.ts
@@ -34,7 +34,5 @@ describe('Creates a new adapter without starting it', () => {
         ConnectUtils.testAdapter(adapterInput);
 
         ConnectUtils.startAndValidateAdapter(7);
-
-        //ConnectUtils.deleteAdapter();
     });
 });

Reply via email to