Replies: 1 comment 4 replies
-
ts-node can be installed via |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Based on the built-in testrunner I want to run my tests inside a test directory. When dealing with .js files I'm using
node --test ./test/**/*Tests.js
. When dealing with .ts files I could usetsc && node --test ./build/**/*Tests.js
.But is it possible to use ts-node for that? :)
I'm not an expert, my pseudo command might look like
node --test ts-node ./test/**/*Tests.ts
Beta Was this translation helpful? Give feedback.
All reactions