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/01/03 07:39:07 UTC

[incubator-streampipes] branch dev updated: [STREAMPIPES-497] Value Rule e2e test case is flaky

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 3f51b6d  [STREAMPIPES-497] Value Rule e2e test case is flaky
3f51b6d is described below

commit 3f51b6dad7761abae0641161d97ac03162df94eb
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Mon Jan 3 08:38:57 2022 +0100

    [STREAMPIPES-497] Value Rule e2e test case is flaky
---
 ui/cypress/support/utils/ConnectEventSchemaUtils.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ui/cypress/support/utils/ConnectEventSchemaUtils.ts b/ui/cypress/support/utils/ConnectEventSchemaUtils.ts
index 50d01ab..20e5bdd 100644
--- a/ui/cypress/support/utils/ConnectEventSchemaUtils.ts
+++ b/ui/cypress/support/utils/ConnectEventSchemaUtils.ts
@@ -62,6 +62,7 @@ export class ConnectEventSchemaUtils {
 
   public static numberTransformation(propertyName: string,  value: string) {
     cy.dataCy('edit-' + propertyName.toLowerCase(), { timeout: 10000 }).click();
+    cy.wait(1000);
     cy.dataCy('connect-schema-correction-value').type(value);
     cy.dataCy('connect-schema-correction-operator').click().get('mat-option').contains('Multiply').click();