Skip to content

Commit

Permalink
Increased UI test timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
n1474335 committed Dec 30, 2018
1 parent 7f2e879 commit 71e0a4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/browser/nightwatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ module.exports = {
.useXpath()
.moveToElement(toHex, 10, 10)
.useCss()
.waitForElementVisible(".popover-body", 500)
.waitForElementVisible(".popover-body", 1000)
.doubleClick();

// Confirm that it has been added to the recipe
Expand All @@ -87,14 +87,14 @@ module.exports = {
// Check output
browser
.useCss()
.waitForElementNotVisible("#stale-indicator", 100)
.waitForElementNotVisible("#stale-indicator", 500)
.expect.element("#output-text").to.have.value.that.equals("44 6f 6e 27 74 20 50 61 6e 69 63 2e");

// Clear recipe
browser
.useCss()
.moveToElement(op, 10, 10)
.waitForElementNotPresent(".popover-body", 500)
.waitForElementNotPresent(".popover-body", 1000)
.click("#clr-recipe")
.waitForElementNotPresent(op);
},
Expand Down

0 comments on commit 71e0a4e

Please sign in to comment.