We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seems when error stack trace includes an async, anonymous callee, the parsed stack trace file information is incorrect.
Assume following error stack trace:
stack Error: test at f (https://some-domain.com/sample-program.js:18:15) at async https://some-domain.com/sample-program.js:22:11
Results in a second item with following properties:
file: "async https://some-domain.com/sample-program.js" fileRelative: "some-domain.com/sample-program.js" fileShort: "some-domain.com/sample-program.js"
Expected properties:
file: "https://some-domain.com/sample-program.js" fileRelative: "sample-program.js" fileShort: "sample-program.js"
Can reproduce the above error stack trace by running the following node program:
(async () => { await Promise.resolve(); throw new Error('test'); })();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Seems when error stack trace includes an async, anonymous callee, the parsed stack trace file information is incorrect.
Repro:
Assume following error stack trace:
Results in a second item with following properties:
Expected properties:
Misc
Can reproduce the above error stack trace by running the following node program:
The text was updated successfully, but these errors were encountered: