Skip to content

Commit

Permalink
Increase bake timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
max0x53 committed Jan 5, 2025
1 parent 3042660 commit ab9a6e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/browser/browserUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ function setInput(browser, input, type=true) {
function bake(browser) {
browser
// Ensure we're not currently busy
.waitForElementNotVisible("#output-loader", 5000)
.waitForElementNotVisible("#output-loader", 7500)
.expect.element("#bake span").text.to.equal("BAKE!");

browser
.click("#bake")
.waitForElementNotVisible("#stale-indicator", 5000)
.waitForElementNotVisible("#output-loader", 5000);
.waitForElementNotVisible("#stale-indicator", 7500)
.waitForElementNotVisible("#output-loader", 7500);
}

/** @function
Expand Down

0 comments on commit ab9a6e4

Please sign in to comment.