summaryrefslogtreecommitdiff
path: root/test/parallel/test-promises-unhandled-proxy-rejections.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-promises-unhandled-proxy-rejections.js')
-rw-r--r--test/parallel/test-promises-unhandled-proxy-rejections.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/parallel/test-promises-unhandled-proxy-rejections.js b/test/parallel/test-promises-unhandled-proxy-rejections.js
index 91808af145..f632857d63 100644
--- a/test/parallel/test-promises-unhandled-proxy-rejections.js
+++ b/test/parallel/test-promises-unhandled-proxy-rejections.js
@@ -6,8 +6,11 @@ const expectedDeprecationWarning = 'Unhandled promise rejections are ' +
'rejections that are not handled will ' +
'terminate the Node.js process with a ' +
'non-zero exit code.';
-const expectedPromiseWarning = 'Unhandled promise rejection (rejection id: ' +
- '1): [object Object]';
+const expectedPromiseWarning = 'Unhandled promise rejection. ' +
+ 'This error originated either by throwing ' +
+ 'inside of an async function without a catch ' +
+ 'block, or by rejecting a promise which was ' +
+ 'not handled with .catch(). (rejection id: 1)';
function throwErr() {
throw new Error('Error from proxy');