Skip to content

Commit

Permalink
[fix] Test lessen some timeouts.
Browse files Browse the repository at this point in the history
  • Loading branch information
indexzero committed Nov 4, 2014
1 parent 28f8fb6 commit e925f5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/logger-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand Down

0 comments on commit e925f5b

Please sign in to comment.