Skip to content

Commit 2ba8d0c

Browse files
committed
update deps per npm audit
1 parent d28b725 commit 2ba8d0c

File tree

4 files changed

+3939
-3933
lines changed

4 files changed

+3939
-3933
lines changed

karma.conf.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ module.exports = function(config) {
33
browsers: ['Firefox'],
44
files: ['mocha_test/*.js'],
55
frameworks: ['browserify', 'mocha'],
6+
plugins: [
7+
'karma-browserify',
8+
'karma-mocha',
9+
'karma-mocha-reporter',
10+
'karma-firefox-launcher'
11+
],
612
preprocessors: {
713
'mocha_test/*.js': ['browserify']
814
},

mocha_test/waterfall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ describe("waterfall", function () {
126126
async.waterfall([
127127
function(callback){
128128
setTimeout(callback, 0, null, 'one', 'two');
129-
setTimeout(callback, 10, null, 'one', 'two');
129+
setTimeout(callback, 2, null, 'one', 'two');
130130
},
131131
function(arg1, arg2, callback){
132132
setTimeout(callback, 15, null, arg1, arg2, 'three');

0 commit comments

Comments
 (0)