[Pkg-javascript-commits] [node-async] 249/480: increase timeouts for testing in IE

Jonas Smedegaard js at moszumanska.debian.org
Fri May 2 08:58:31 UTC 2014


This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository node-async.

commit bee45ddd8655de34befb7d5ae3bc665b42666c25
Author: Caolan McMahon <caolan at caolanmcmahon.com>
Date:   Thu Jan 31 13:28:25 2013 +0000

    increase timeouts for testing in IE
---
 test/test-async.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/test/test-async.js b/test/test-async.js
index 8c9a979..69390fa 100644
--- a/test/test-async.js
+++ b/test/test-async.js
@@ -49,19 +49,19 @@ function getFunctionsObject(call_order) {
             setTimeout(function(){
                 call_order.push(1);
                 callback(null, 1);
-            }, 25);
+            }, 100);
         },
         two: function(callback){
             setTimeout(function(){
                 call_order.push(2);
                 callback(null, 2);
-            }, 50);
+            }, 150);
         },
         three: function(callback){
             setTimeout(function(){
                 call_order.push(3);
                 callback(null, 3,3);
-            }, 15);
+            }, 50);
         }
     };
 }

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-async.git



More information about the Pkg-javascript-commits mailing list