From 8e8352127a4a86bb0f2533601da4e6d1b1462de0 Mon Sep 17 00:00:00 2001 From: Brian Carlson Date: Tue, 22 Feb 2011 19:32:18 -0600 Subject: [PATCH] decrease emit timeout time --- test/test-helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-helper.js b/test/test-helper.js index 7f01fa12..0250dfc4 100644 --- a/test/test-helper.js +++ b/test/test-helper.js @@ -32,7 +32,7 @@ assert.emits = function(item, eventName, callback) { test("Should have called " + eventName, function() { assert.ok(called, "Expected '" + eventName + "' to be called.") }); - },20000); + },2000); item.once(eventName, function() { called = true;