I got a failing javascript jest test on my hands and so, I have used the usual stuff to debug: node-debug --nodejs --harmony ./node_modules/jest-cli/bin/jest.js --runInBand
So, it actually works but with all the babel-jest black magic going behind the scene, I cannot get to see the original code and to get the debugger to navigate through it properly. I only get one of those horrible one-liners we all hate, or sometimes get stuck in the calling function in the debugger (tried chrome dev tools and visual studio code). So, is there a way to generate a usable js map and use it to debug jest test? Do I have to navigate only by watching the call stack and by guessing where I am in my piece of code?