-
Notifications
You must be signed in to change notification settings - Fork 30k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
promises: more robust stringification
Backport-PR-URL: #17833 PR-URL: #13784 Fixes: #13771 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information
1 parent
5bdc3bc
commit 2d6e802
Showing
3 changed files
with
49 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
|
||
const expectedPromiseWarning = 'Unhandled promise rejection (rejection id: ' + | ||
'1): [object Object]'; | ||
|
||
function throwErr() { | ||
throw new Error('Error from proxy'); | ||
} | ||
|
||
const thorny = new Proxy({}, { | ||
getPrototypeOf: throwErr, | ||
setPrototypeOf: throwErr, | ||
isExtensible: throwErr, | ||
preventExtensions: throwErr, | ||
getOwnPropertyDescriptor: throwErr, | ||
defineProperty: throwErr, | ||
has: throwErr, | ||
get: throwErr, | ||
set: throwErr, | ||
deleteProperty: throwErr, | ||
ownKeys: throwErr, | ||
apply: throwErr, | ||
construct: throwErr | ||
}); | ||
|
||
common.expectWarning('UnhandledPromiseRejectionWarning', | ||
expectedPromiseWarning); | ||
|
||
// ensure this doesn't crash | ||
Promise.reject(thorny); |