I remake browser version of TacticToy game with React, and during unit-tests writing I've got a problem: there is no full traceback of a custom exception, only test function is highlighted:
In the package.json file's scripts section I have "test": "react-scripts test", it runs Jest under the hood. I tried to run Jest without React-scripts, but this leads to lots of errors, seems like React adds some important config... So, what and how should I adjust to receive tracebacks of exceptions thrown during the tests?
