Increasing timeout in test

This commit is contained in:
vjrj 2018-02-21 20:25:40 +01:00
parent f46aabb4d3
commit ed16fe69b5

View file

@ -43,7 +43,7 @@ module.exports = function () {
for (let i = 0; i < pages.length; i += 1) {
client.url(`${process.env.ROOT_URL}/${pages[i][0]}`);
const content = pages[i][1];
client.waitForVisible('#react-root', 5000);
client.waitForVisible('#react-root', 10000);
client.waitForText('#react-root', content);
}
callback();