When I run npm test -- --debug-brk to debug my tests I get a deprecation warning and is suggested to use --inspect instead. But node-tap fails with Unknown argument: --inspect.
gulp-tap@0.4.0 test /home/dotnet/projects/opensource/gulp-tap
tap tests/*.js "--debug-brk"
(node:3614) DeprecationWarning: node --debug is deprecated. Please use node --inspect instead.
Debugger listening on 127.0.0.1:5858
Error: Unknown argument: --inspect
at parseArgs (/home/dotnet/projects/opensource/gulp-tap/node_modules/tap/bin/run.js:384:15)
When I run
npm test -- --debug-brkto debug my tests I get a deprecation warning and is suggested to use--inspectinstead. But node-tap fails withUnknown argument: --inspect.