Skip to content

Instantly share code, notes, and snippets.

View thanhdat21293's full-sized avatar

Nguyễn Thành Đạt thanhdat21293

View GitHub Profile
@timoxley
timoxley / gist:1721593
Created February 2, 2012 04:58
Recursively run all tests in test directory using mocha
// this will find all files ending with _test.js and run them with Mocha. Put this in your package.json
"scripts": {
"test": "find ./tests -name '*_test.js' | xargs mocha -R spec"
},