browserify / sha.js

Streamable SHA hashes in pure javascript
Other
288 stars 60 forks source link

Add node v4 and v5 to travis config #33

Closed fanatid closed 8 years ago

fanatid commented 8 years ago

Also add build matrix. btw, why unit task is so wired? why not just tape test/**/*.js ?

dcousens commented 8 years ago

Nice @fanatid :)

dcousens commented 8 years ago

As for

"unit": "set -e; for t in test/*.js; do node $t; done;"

Since it errors out if any fail, it is essentially equivalent. I guess it makes sure there is no shared state between tests?

fanatid commented 8 years ago

I guess it makes sure there is no shared state between tests?

yeah, maybe