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

dominikriemer 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 624d17a7b3 fix: Pipeline group test (#4713)
624d17a7b3 is described below

commit 624d17a7b3d75a25d691bd9d3f6ddab273bbbe3f
Author: Dominik Riemer <[email protected]>
AuthorDate: Sun Jul 12 15:56:20 2026 +0200

    fix: Pipeline group test (#4713)
---
 ui/cypress/support/utils/pipeline/PipelineUtils.ts | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/ui/cypress/support/utils/pipeline/PipelineUtils.ts 
b/ui/cypress/support/utils/pipeline/PipelineUtils.ts
index b9668aa8e4..a5b72746c0 100644
--- a/ui/cypress/support/utils/pipeline/PipelineUtils.ts
+++ b/ui/cypress/support/utils/pipeline/PipelineUtils.ts
@@ -227,7 +227,9 @@ export class PipelineUtils {
             // The wait is needed because the default value is the 
no-table-entries element.
             // It must be waited till the data is loaded. Once a better 
solution is found, this can be removed.
             cy.wait(1000);
-            cy.dataCy('no-table-entries').should('have.length', 2);
+            cy.dataCy('all-pipelines-table')
+                .find('[data-cy="no-table-entries"]')
+                .should('have.length', 1);
         } else {
             PipelineBtns.statusPipeline().should('have.length', amount);
         }

Reply via email to