- Debug Mocha Test (ts-node) - allows you debug typescript files using ts-node.
- Debug Mocha Test Current File (ts-node) - allows you debug current typescript file using ts-node.
- Debug Mocha Test (transpiled-code) - allows you debug typescript files by transpiled code. Before run this task, typescript files will transpile to js with source-map.
- Press Ctrl+Shift+D and choose debug task to debug test.
- Press Ctrl+Shift+B to build the project.
- Press Ctrl+Shift+P and choose "Run test task" to run test.
npm test
ornpm run test:ts
ornpm run test:ts:watch
.npm run test:js
.
- typescript
- ts-node - typeScript execution environment and REPL for node.
- tsconfig-paths - load modules.
- comment-json - parse JSON strings with comments into JavaScript objects.
- mocha - test runner.
- chai - assertion library.