From acb154c6d93a448ad4b7101cac1716300d9a6890 Mon Sep 17 00:00:00 2001 From: Juanfran Date: Wed, 12 Aug 2015 14:59:40 +0200 Subject: [PATCH] e2e - increase notification timeout --- e2e/utils/notifications.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/utils/notifications.js b/e2e/utils/notifications.js index 79ebd9b5..6606f77e 100644 --- a/e2e/utils/notifications.js +++ b/e2e/utils/notifications.js @@ -11,7 +11,7 @@ notifications.success.open = function() { return browser .wait(function() { return common.hasClass(el, 'active'); - }, 2000) + }, 4000) .then(function(active) { return browser.sleep(transition).then(function() { return active; @@ -40,7 +40,7 @@ notifications.error.open = function() { return browser .wait(function() { return common.hasClass(el, 'active'); - }, 2000) + }, 4000) .then(function(active) { return browser.sleep(transition).then(function() { return active; @@ -55,7 +55,7 @@ notifications.errorLight.open = function() { return browser .wait(function() { return common.hasClass(el, 'active'); - }, 2000) + }, 4000) .then(function(active) { return browser.sleep(transition).then(function() { return active;