test/index.js file runs the tests by iterating contents top-down within this
directory.
process is launched from project root by node test piped to tap-spec.
$ node test | tap-specthere are also some convenience operations via make:
$ git clone git@github.com:reqshark/nodenng.git && cd nodenng
$ make clean && make && make checkthese are respectively:
$ rm -rf package-* node_modules build nng deps # make clean
$ npm i # make
$ npm t # make check