I'm using Mocha Version 6.0.2 in my project with ts-node for writing unit tests in TypeScript.
I'm starting mocha from the command line via:
mocha --require ts-node/register --ui bdd ./src/**/*.test.ts ./src/**/*.test.tsx
With ts-node 6.x I don't have any problems, but all ts-node versions after (7.x and 8.x) make mocha hanging without any output.
Is it possible to get a debug output from Mocha or ts-node to see what's going on?
I'm using Mocha Version 6.0.2 in my project with ts-node for writing unit tests in TypeScript.
I'm starting mocha from the command line via:
mocha --require ts-node/register --ui bdd ./src/**/*.test.ts ./src/**/*.test.tsxWith ts-node 6.x I don't have any problems, but all ts-node versions after (7.x and 8.x) make mocha hanging without any output.
Is it possible to get a debug output from Mocha or ts-node to see what's going on?