Skip to content

Commit

Permalink
longer timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
lovasoa authored Oct 23, 2023
1 parent a6d2816 commit 9fb0d96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function testCircle(browser) {
})
.assert.visible("ellipse[cx='0'][cy='200'][rx='200'][ry='200'][stroke='#112233']")
.refresh()
.waitForElementVisible("ellipse[cx='0'][cy='200'][rx='200'][ry='200'][stroke='#112233']")
.waitForElementVisible("ellipse[cx='0'][cy='200'][rx='200'][ry='200'][stroke='#112233']", 15000)
.click('#toolID-Ellipse') // Click the ellipse tool
.click('#toolID-Ellipse') // Click again to toggle
.assert.containsText('#toolID-Ellipse .tool-name', 'Cercle') // Circle in french
Expand Down Expand Up @@ -129,4 +129,4 @@ function testBoard(browser) {
page.end();
}

module.exports = { beforeEach, testBoard, afterEach };
module.exports = { beforeEach, testBoard, afterEach };

0 comments on commit 9fb0d96

Please sign in to comment.