alexgorbatchev / crc

Blazingly fast CRC implementations for node.js and browser
MIT License
349 stars 72 forks source link

simplify testing #14

Closed Mithgol closed 10 years ago

Mithgol commented 10 years ago

This pull request contains two changes:

  1. It's possible to run npm scriptname without prepending ./node_modules/.bin/ to the names of locally installed Node modules' CLI commands. I've removed ./node_modules/.bin/ from mocha and coffee.
  2. The repository does not contain a makefile, and thus npm test becomes more reliable than make test for testing. It's also shorter to type, and thus I've given npm test in the corresponding example (in README.md).
alexgorbatchev commented 10 years ago

Fantastic! Learned something new today about npm script!