This is an automated email from the ASF dual-hosted git repository. dominikriemer pushed a commit to branch fix-pipeline-group-test in repository https://gitbox.apache.org/repos/asf/streampipes.git
commit 4557bcc354d1bcdd6915daf5bf21b85342c9ec09 Author: Dominik Riemer <[email protected]> AuthorDate: Sun Jul 12 15:31:57 2026 +0200 fix: Pipeline group test --- 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); }
