You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 3, 2024. It is now read-only.
While moving the repo structure I ran into the a test failure with test-v8debugapi.js. The test is trying to set a breakpoint in test/fixtures/coffee/transpile.coffee. Sourcemapper fails to find the corresponding output file / map file for this file because it has the following map:
1) v8debugapi set and wait should be possible to set conditional breakpoints in coffeescript:
Uncaught Error: Could not determine the output file associated with the transpiled input file
at setErrorStatusAndCallback (packages/debug/src/agent/v8debugapi.js:557:17)
at Object.set (packages/debug/src/agent/v8debugapi.js:125:18)
at Context.<anonymous> (packages/debug/test/test-v8debugapi.js:984:13)
This is because test/fixtures/coffee/transpile.coffee does not exist in the map above exactly.
For non-transpiled files we are quite flexible in being to find the files even if the repo structure doesn't end up matching the deployed / under-debug version of the files. We need a similar treatment here.