increase TravisCI timeout to 20s

This commit is contained in:
Mohsen Azimi
2015-03-04 08:51:20 -08:00
parent a80570a4b7
commit b30c99dd63
3 changed files with 3 additions and 1 deletions

View File

@@ -32,7 +32,7 @@ module.exports.start = function (specsLocation, done) {
setTimeout(function(){
driver.get(url);
done();
}, process.env.TRAVIS ? 10000 : 3000);
}, process.env.TRAVIS ? 20000 : 3000);
};
module.exports.close = function(){