chore(xod-client-electron): enlarge timeout for waiting element in the spectron

This commit is contained in:
Kirill Shumilov
2018-10-03 19:22:52 +03:00
parent b58bb2aa75
commit f2ecaaa604

View File

@@ -75,7 +75,7 @@ function findProjectBrowser(client) {
function assertProjectIsOpened(client, projectName) {
const selector = `.PatchGroup__trigger.my .patch-group-trigger[data-id="${projectName}"`;
return assert.eventually.isTrue(client.waitForExist(selector, 10000));
return assert.eventually.isTrue(client.waitForExist(selector, 15000));
}
function clickAddPatch(client) {