From e925f5bc398a88464f3e796545ff88912aff7568 Mon Sep 17 00:00:00 2001 From: indexzero Date: Tue, 4 Nov 2014 13:29:19 -0500 Subject: [PATCH] [fix] Test lessen some timeouts. --- test/logger-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/logger-test.js b/test/logger-test.js index 259219d08..2f3079c0c 100755 --- a/test/logger-test.js +++ b/test/logger-test.js @@ -161,7 +161,7 @@ vows.describe('winton/logger').addBatch({ timer.done('test', function (err, level, msg, meta) { that.callback(err, level, msg, meta, logger); }); - }, 1000); + }, 500); }, "should respond with the appropriate message": function (err, level, msg, meta, logger) { assert.isNull(err); @@ -176,7 +176,7 @@ vows.describe('winton/logger').addBatch({ logger.once('logging', that.callback.bind(null, null)); setTimeout(function () { timer.done(); - }, 1000); + }, 500); }, "should respond with the appropriate message": function (err, transport, level, msg, meta) { assert.isNull(err);