Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upReport unhandled promise rejections to devtools #26667
Open
Labels
Projects
Comments
|
For what it's worth, a user script containing: onunhandledrejection = function(e) {
throw e;
};yields very helpful output on pages that are otherwise uninformative sometimes. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When there's no explicit
unhandledrejectionlistener, we should do useful things like printing a message to stdout and sending a message to the devtools. We should also see if Firefox does anything smart here.