You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2022/08/05 08:49:39 UTC

[incubator-streampipes] branch dev updated: [hotfix] Add delay for widget data configuration cypress test

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/incubator-streampipes.git


The following commit(s) were added to refs/heads/dev by this push:
     new ff0e72f2e [hotfix] Add delay for widget data configuration cypress test
ff0e72f2e is described below

commit ff0e72f2e82bf7858c8b54725583aeaf72a6f725
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Fri Aug 5 10:49:10 2022 +0200

    [hotfix] Add delay for widget data configuration cypress test
---
 ui/cypress/support/utils/DataLakeUtils.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/cypress/support/utils/DataLakeUtils.ts b/ui/cypress/support/utils/DataLakeUtils.ts
index 3f131eebd..5d3d057c7 100644
--- a/ui/cypress/support/utils/DataLakeUtils.ts
+++ b/ui/cypress/support/utils/DataLakeUtils.ts
@@ -168,7 +168,7 @@ export class DataLakeUtils {
     if (amountOfFilter === 0) {
       cy.dataCy('design-panel-data-settings-filter-field').should('not.exist');
     } else {
-      cy.dataCy('design-panel-data-settings-filter-field').should('be.visible');
+      cy.dataCy('design-panel-data-settings-filter-field', { timeout: 20000 }).should('be.visible');
     }
   }