microsoft/TypeScriptSamples

How to write test for Imageboard

btomala opened this issue · 1 comments

How can I test app.js or db.js which mocha or other test framework?

Any JavaScript test framework you like should just work. TypeScript is JavaScript, and it compiles down to plain JavaScript; no run-time library and no helper code. so when the compiler is done, you are left with just JS and any JS test framework or any JS build tool should work.