UNPKG

statsd

Version:

Network daemon for the collection and aggregation of realtime application metrics

16 lines (14 loc) 352 B
#!/usr/bin/env node let reporter; try { reporter = require('nodeunit').reporters.default; } catch(e) { console.log("Cannot find nodeunit module."); console.log("Make sure to run 'npm install nodeunit'"); process.exit(); } process.chdir(__dirname); reporter.run(['test/'], null, function(failure) { process.exit(failure ? 1 : 0) });