https://github.com/statsd/statsd
Raw File
Tip revision: aa44a5e0c3f0d35c460c7da1532ec0ead14aebce authored by Elliot Blackburn on 13 March 2019, 16:13:17 UTC
increment version to 0.8.1
Tip revision: aa44a5e
run_tests.sh
#!/usr/bin/env node
try {
    var 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)
});
back to top