Skip to content

Commit

Permalink
test: use common.crashOnUnhandledRejection
Browse files Browse the repository at this point in the history
Add common.crashOnUnhandledRejection to test/parallel/test-microtask-queue-run-immediate.js
  • Loading branch information
madeinfree committed Nov 22, 2017
1 parent f722d31 commit b2b97f2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/parallel/test-microtask-queue-run-immediate.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@
// USE OR OTHER DEALINGS IN THE SOFTWARE.

'use strict';
require('../common');
const common = require('../common');
const assert = require('assert');

common.crashOnUnhandledRejection();

function enqueueMicrotask(fn) {
Promise.resolve().then(fn);
}
Expand Down

0 comments on commit b2b97f2

Please sign in to comment.