From a2cca6391a97c601496aadc0a6f5efb290c3b126 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Fri, 21 Aug 2020 16:27:30 +0200 Subject: [PATCH] Remove page reload step definition Apparently the step definition for the page reload gets reused from phoenix. --- ui/tests/acceptance/stepDefinitions/accountsContext.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ui/tests/acceptance/stepDefinitions/accountsContext.js b/ui/tests/acceptance/stepDefinitions/accountsContext.js index 1e8b3f9ad..b07eb340f 100644 --- a/ui/tests/acceptance/stepDefinitions/accountsContext.js +++ b/ui/tests/acceptance/stepDefinitions/accountsContext.js @@ -19,7 +19,3 @@ When('the user changes the role of user {string} to {string} using the WebUI', f Then('the displayed role of user {string} should be {string} on the WebUI', function (username, role) { return client.page.accountsPage().checkUsersRole(username, role) }) - -When('the user reloads the current page of the webUI', function () { - return client.refresh() -})