From f97837b4c8de68422b05d5fe06c06f6f75f63cd0 Mon Sep 17 00:00:00 2001 From: Harish K Date: Wed, 17 Jun 2015 03:13:51 +0530 Subject: [PATCH] Readme --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..c63bdcf --- /dev/null +++ b/README.md @@ -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 +```