reusable test suite that a flumelog implementation must pass
install this as a devdep on your flumelog implementation, and then have a test file like this:
//test.js
require('test-flumelog')(require(path_to_my_flumelog)(setup_args...))
then in your package.json, just have
"scripts": {
"test": "node test.js"
},
MIT