-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
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
Document how to use source map support #20
Comments
@novemberborn happy to help document but the steps I've taken thus far don't seem to have changed anything. After configuring per the
Further discussionAssuming that we can get the above steps to work, what does If we building before running Ava, we should be getting the source maps we need, no? "scripts": {
"test": "tsc --build tsconfig.tests.json && nyc ava"
} |
By chance, I tried running Seems like the problem is related to issues with |
It rewrites stack traces, taking the source map into account.
Yea… this stuff gets complicated fast. |
This provider doesn't translate error stack traces using source maps. We should document how you can set that up yourself, by installing
source-map-support
and addingsource-map-support/register
to AVA'srequire
configuration.The text was updated successfully, but these errors were encountered: