I added barbatus/typescript to my project and created a file.test.ts. I’m using practicalmeteor:mocha as a test runner, but It seems to ignore the typescript test files (the file.test.js works fine)
1 Like
Unit test in ts is practically the same as js. Since tsc will compile file.test.ts to file.test.js in the same directory.
Unless you specify outDir?