From fcd52576fcb16e7f43369cb74d2957a77103408a Mon Sep 17 00:00:00 2001 From: "Ryan X. Charles" Date: Wed, 19 Mar 2014 06:43:14 -0700 Subject: [PATCH] update README to explain tests and code coverage report --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index 4802d4e23..8a73f6c46 100644 --- a/README.md +++ b/README.md @@ -296,6 +296,30 @@ This will generate a `browser/bundle.js` containing only the Transaction Use this option if you are not using the whole bitcore library, to optimize the bundle size, script loading time, and general resource usage. +## Tests + +Run tests in node: + +``` +mocha +``` + +Or generate tests in the browser: + +``` +grunt shell +``` + +And then open test/index.html in your browser. + +To run the code coverage report: + +``` +npm run-script coverage +``` + +And then open coverage/lcov-report/index.html in your browser. + #License