This is an automated email from the ASF dual-hosted git repository.
zehnder pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git
The following commit(s) were added to refs/heads/dev by this push:
new 1c6a10de56 fix: Fix nightly builds after upgrading to material 3
(#3777)
1c6a10de56 is described below
commit 1c6a10de569319201bd88a85cd28d28303c60928
Author: Philipp Zehnder <[email protected]>
AuthorDate: Thu Sep 11 13:29:49 2025 +0200
fix: Fix nightly builds after upgrading to material 3 (#3777)
---
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();
});
});