From e8e60beff2032eec1c9b33e9643042f83ac44c19 Mon Sep 17 00:00:00 2001 From: Yuya Ochiai Date: Thu, 12 Apr 2018 23:01:46 +0900 Subject: [PATCH] Tweak timeout --- test/specs/browser/settings_test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/specs/browser/settings_test.js b/test/specs/browser/settings_test.js index 58503019..fa6370e1 100644 --- a/test/specs/browser/settings_test.js +++ b/test/specs/browser/settings_test.js @@ -356,7 +356,7 @@ describe('browser/settings.html', function desc() { it('should disappear on click Close', async () => { await this.app.client. click('.modal-dialog button.close'). - waitForVisible(modalTitleSelector, 5000, true); + waitForVisible(modalTitleSelector, 10000, true); const existing = await this.app.client.isExisting(modalTitleSelector); existing.should.be.false; }); @@ -364,7 +364,7 @@ describe('browser/settings.html', function desc() { it('should disappear on click background', async () => { await this.app.client. click('body'). - waitForVisible(modalTitleSelector, 5000, true); + waitForVisible(modalTitleSelector, 10000, true); const existing = await this.app.client.isExisting(modalTitleSelector); existing.should.be.false; });