Extend pause

This commit is contained in:
Yuya Ochiai
2016-06-25 21:41:36 +09:00
parent b6e975aa21
commit 98b6ce8760

View File

@@ -69,7 +69,7 @@ describe('application', function() {
const webview = document.querySelector('webview'); const webview = document.querySelector('webview');
webview.executeJavaScript('open_window();'); webview.executeJavaScript('open_window();');
}) })
.pause(500) // wait for the new window .pause(1000) // wait for the new window
.windowByIndex(3).isNodeEnabled().should.eventually.be.false; .windowByIndex(3).isNodeEnabled().should.eventually.be.false;
}) })
}); });