Skip to content

Commit

Permalink
test: refactor test-handle-wrap-close-abort
Browse files Browse the repository at this point in the history
* use common.mustCall() to confirm number of uncaught exceptions
* var -> const
* specify duration of 1ms for setTimeout() and setInterval()
  • Loading branch information
Trott committed Dec 9, 2016
1 parent 6aacef7 commit 6df98c1
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions test/parallel/test-handle-wrap-close-abort.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
'use strict';
require('../common');
const common = require('../common');

process.on('uncaughtException', function() { });
function noop() {}
const uncaughtExceptionHandler = common.mustCall(noop, 2);

process.on('uncaughtException', uncaughtExceptionHandler);

setTimeout(function() {
process.nextTick(function() {
var c = setInterval(function() {
const c = setInterval(function() {
clearInterval(c);
throw new Error('setInterval');
});
}, 1);
});
setTimeout(function() {
throw new Error('setTimeout');
});
}, 1);
});

0 comments on commit 6df98c1

Please sign in to comment.