Skip to content

Commit

Permalink
Merge pull request #13 from kdamball/patch-1
Browse files Browse the repository at this point in the history
Fixing debounce race-condition for timeouts
  • Loading branch information
kolodny committed Jun 16, 2015
2 parents 22ac65d + 90e7ccf commit 58ff73c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debounce/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe('debounce', function() {
setTimeout(function() {
assert.equal(called, 2);
done();
}, 35);
}, 45);
});

it('gets called with context', function(done) {
Expand Down

0 comments on commit 58ff73c

Please sign in to comment.