updated timeouts

This commit is contained in:
Tony Tam
2015-09-19 11:36:40 -07:00
parent f6f8e74586
commit 20b0dde184
4 changed files with 388 additions and 384 deletions

View File

@@ -28,8 +28,12 @@ module.exports.start = function (specsLocation, done) {
setTimeout(function(){
driver.get(url);
done();
setTimeout(function() {
done();
}, 2000);
console.log('waiting for UI to load');
}, process.env.TRAVIS ? 20000 : 5000);
console.log('waiting for server to start');
};
module.exports.close = function() {