Skip to content

Commit

Permalink
Bind the test script.
Browse files Browse the repository at this point in the history
And tweak docs accordingly.
  • Loading branch information
Dan Bornstein committed Feb 28, 2012
1 parent 4c2cddf commit 2670271
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ use those in clever ways to whittle down the required comparisons,
often allowing O(1) implementations.


Installing
----------
Building and Installing
-----------------------

```shell
npm install oid
Expand All @@ -26,6 +26,12 @@ node-waf configure build
Testing
-------

```shell
npm test
```

Or

```shell
node ./test/test.js
```
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
},

"scripts": {
"install": "node-waf configure build"
"install": "node-waf configure build",
"test": "node test/test.js"
}
}

0 comments on commit 2670271

Please sign in to comment.