This commit is contained in:
2015-06-17 03:13:51 +05:30
parent 682d65766f
commit f97837b4c8
+13
View File
@@ -0,0 +1,13 @@
# simple-mocha
Simple stupid implementation of Mocha test runner. Tests can be run directly within node as any Nodejs code.
# Usage
```
npm install simple-mocha
```
```javascript
require('simple-mocha');
// add the above line to test file and run tests using
// node test-file.spec.js
```