From df9db7981c6b357566f494c82420b779e2497bd1 Mon Sep 17 00:00:00 2001 From: Eugenio Romano Date: Wed, 27 Mar 2019 17:38:21 +0000 Subject: [PATCH] fix tes process-filter --- .../process-custom-filters.e2e.ts | 27 +++++++++++++++---- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/e2e/process-services-cloud/process-custom-filters.e2e.ts b/e2e/process-services-cloud/process-custom-filters.e2e.ts index ae48e12fc0..c6c44c5859 100644 --- a/e2e/process-services-cloud/process-custom-filters.e2e.ts +++ b/e2e/process-services-cloud/process-custom-filters.e2e.ts @@ -62,11 +62,28 @@ describe('Process list cloud', () => { navigationBarPage.clickConfigEditorButton(); configEditorPage.clickEditProcessCloudConfiguration(); configEditorPage.clickClearButton(); - configEditorPage.enterConfiguration('{' + - '"properties": [' + - '"appName",' + '"state",' + '"processInstanceId",' + '"sort",' + '"order"' + - ']' + - '}'); + configEditorPage.enterBigConfigurationText(`{ + "filterProperties": [ + "appName", + "status", + "processInstanceId", + "order", + "sort", + "order" + ], + "sortProperties": [ + "id", + "name", + "status", + "startDate" + ], + "actions": [ + "save", + "saveAs", + "delete" + ] + }`); + configEditorPage.clickSaveButton(); await processDefinitionService.init(user, password);