aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBenjamin Coe <[email protected]>2015-05-23 14:25:34 -0700
committerBenjamin Coe <[email protected]>2015-05-23 14:25:34 -0700
commit712e6e4bb4d8e1a60f646d954743a6808aa7f13e (patch)
tree07829e94b2dd7f71cc5a7a44b50e2b6446eaf4b3 /README.md
parenta7bd62356316196268ff03440898a8b596b6e877 (diff)
downloadnode-coveralls-712e6e4bb4d8e1a60f646d954743a6808aa7f13e.tar.xz
node-coveralls-712e6e4bb4d8e1a60f646d954743a6808aa7f13e.zip
slight tweak to README
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index aacde2b..eb28744 100644
--- a/README.md
+++ b/README.md
@@ -110,17 +110,17 @@ lab -r lcov | ./node_modules/.bin/coveralls
### [nyc](https://github.com/bcoe/nyc)
-works with almost any testing framework, simply execute
-`npm test` with the `nyc` bin, followed by running its reporter:
+works with almost any testing framework. Simply execute
+`npm test` with the `nyc` bin followed by running its reporter:
```
nyc npm test && nyc report --reporter=text-lcov | coveralls
```
-### [tap](https://github.com/isaacs/node-tap)
+### [TAP](https://github.com/isaacs/node-tap)
Simply run your tap tests with the `COVERALLS_REPO_TOKEN` environment
-variable set, and tap will automatically use `nyc` to report
+variable set and tap will automatically use `nyc` to report
coverage to coveralls.
## Running locally