From c9b94ff79e9b907619a6c54537fe5d5ef1ccec6d Mon Sep 17 00:00:00 2001 From: yozian Date: Wed, 22 Nov 2017 16:18:37 +0800 Subject: [PATCH] test: use common.crashOnUnhandledRejection Add common.crashOnUnhandledRejection to test/sequential/test-inspector-break-e.js PR-URL: https://github.com/nodejs/node/pull/17242 Reviewed-By: Gireesh Punathil Reviewed-By: Benjamin Gruenbaum Reviewed-By: Anatoli Papirovski Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Myles Borins --- test/sequential/test-inspector-break-e.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/sequential/test-inspector-break-e.js b/test/sequential/test-inspector-break-e.js index 1a8f8ca50d3..9ae47253f49 100644 --- a/test/sequential/test-inspector-break-e.js +++ b/test/sequential/test-inspector-break-e.js @@ -2,6 +2,7 @@ const common = require('../common'); common.skipIfInspectorDisabled(); +common.crashOnUnhandledRejection(); const assert = require('assert'); const { NodeInstance } = require('../common/inspector-helper.js');