
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
ts-node-test-register
Advanced tools
Use test/tsconfig.json with ts-node for testing.
test/tsconfig.jsonThis register library load tsconfig.json file by following priority.
project/{test}/tsconfig.test.jsonproject/{test}/tsconfig.jsonproject/tsconfig.test.jsonproject/tsconfig.json{test} is test directory by default.
You can specified the {test} by directories of package.json.
"directories": {
"test": "test"
},
Notes: Why need to load different tsconfig.json between main and test?
In some times, we use different tsconfig.json between main code and test code.
For example, you can enable allowJs in test code.
It supports gradual migration that convert JavaScript to TypeScript.
This behavior is reverted in v6.0.0ts-node(v4) disable type-check by default.
The motivation is based on so not good experience.
mocha runs fine while tsc cannot compile the script · Issue #448 · textlint/textlintThis register library supports Mike Haas's opinion.
test code is still code, if there's type errors in such test code, shouldn't it fail? -- https://github.com/kulshekhar/ts-jest/issues/79#issuecomment-355397865
Install with npm:
npm install ts-node ts-node-test-register --save-dev
:warning: ts-node is peerDependencies.
You need to install ts-node.
Using with mocha.
mocha --require ts-node-test-register "test/**/*.ts"
Or define --require ts-node-test-register to .mocharc.{js,json,yml}.
├── package.json
├── .mocharc.json (--require ts-node-test-register)
├── src
│ └── index.ts
└── test
├── tsconfig.json // <= load this tsconfig.json
└── index-test.ts
For more details, see example.
See Releases page.
Install devDependencies and Run yarn test:
yarn test
yarn run test:example
Pull requests and stars are always welcome.
For bugs and feature requests, please create an issue.
git checkout -b my-new-featuregit commit -am 'Add some feature'git push origin my-new-featureMIT © azu
FAQs
Load from `test/tsconfig.json` with ts-node.
We found that ts-node-test-register demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.