Increase timeout for server launch in TravisCI

This commit is contained in:
Mohsen Azimi
2015-03-02 11:17:56 -08:00
parent d28321be30
commit 9332911996

View File

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