Skip to content

Tips & Tricks

Felix J. Batista edited this page Aug 21, 2019 · 2 revisions
  • Running Mocha tests in TypeScript without compiling:
 "testify.additionalArgs": "-r ts-node/register"
  • Skipping uninteresting code when debugging (e.g. node modules and node internals):
 "testify.skipFiles": [
   "<node_internals>/**/*.js",
   "${workspaceFolder}/node_modules/**/*.js",
 ],
Clone this wiki locally