This is an automated email from the ASF dual-hosted git repository.
riemer 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 1e3e439834 fix(#4175): angular v20 upgrade causing failing e2e tests
(#4177)
1e3e439834 is described below
commit 1e3e43983453728b683db458c27cb6afed9d2114
Author: Philipp Zehnder <[email protected]>
AuthorDate: Mon Feb 16 17:38:16 2026 +0100
fix(#4175): angular v20 upgrade causing failing e2e tests (#4177)
---
ui/cypress/support/utils/FileManagementUtils.ts | 15 +++++++++++++++
ui/cypress/support/utils/connect/ConnectBtns.ts | 2 +-
2 files changed, 16 insertions(+), 1 deletion(-)
diff --git a/ui/cypress/support/utils/FileManagementUtils.ts
b/ui/cypress/support/utils/FileManagementUtils.ts
index 617948d36c..aaf27debe8 100644
--- a/ui/cypress/support/utils/FileManagementUtils.ts
+++ b/ui/cypress/support/utils/FileManagementUtils.ts
@@ -32,12 +32,27 @@ export class FileManagementUtils {
{ force: true },
);
cy.dataCy('sp-file-management-store-file').click();
+
+ this.expectUploadedFileToBeVisibleInFileOverview(filePath);
}
private static addFixtureDirectoryPrefix(filePath: string): string {
return 'cypress/fixtures/' + filePath;
}
+ private static getFileName(filePath: string): string {
+ return filePath.split('/').pop() ?? filePath;
+ }
+
+ private static expectUploadedFileToBeVisibleInFileOverview(
+ filePath: string,
+ ): void {
+ const uploadedFileName = this.getFileName(filePath);
+ cy.get('sp-file-overview', { timeout: 10000 })
+ .contains('span', uploadedFileName)
+ .should('be.visible');
+ }
+
public static deleteFile() {
// Go to StreamPipes file management
cy.visit('#/configuration/files');
diff --git a/ui/cypress/support/utils/connect/ConnectBtns.ts
b/ui/cypress/support/utils/connect/ConnectBtns.ts
index 17db61452f..54c9c71419 100644
--- a/ui/cypress/support/utils/connect/ConnectBtns.ts
+++ b/ui/cypress/support/utils/connect/ConnectBtns.ts
@@ -323,7 +323,7 @@ export class ConnectBtns {
}
public static jsonArrayFieldKey() {
- return 'format-arrayFieldConfig-2-key-0';
+ return
'format-org.apache.streampipes.extensions.management.connect.adapter.parser.json-0-json_options-0-arrayFieldConfig-2-key-0';
}
public static xmlTag() {