Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 2.82 KB

mocha.md

File metadata and controls

37 lines (31 loc) · 2.82 KB

Bookmarks tagged [mocha]

https://zaiste.net/modern_node_js_async_await_based_testing_with_mocha_chai/

Mocha is a JavaScript test framework running on Node.js and in the browser. It can run both asynchronous and synchronous code serially. Test cases are created using describe() and it() methods, the fo...


http://azimi.me/2016/09/30/nyc-mocha-typescript.1.html

package.json + mocha.opts configuration to get mocha and instanbul running with typescript


https://istanbul.js.org/docs/tutorials/typescript/

Thanks to @mohsen1's post the following is the minimum recommended configuration to get accurate TypeScript coverage with mocha. With this…


https://gist.github.com/yoavniran/1e3b0162e1545055429e


http://mochajs.org/

Mocha is a feature-rich JavaScript test framework running on Node.js and in the browser, making asynchronous testing simple and fun. Mocha tests run serially, allowing for flexible and accurate report...