https://github.com/statsd/statsd
Raw File
Tip revision: 2377c9b9e4bae8e903c9efa87ed7d80a8d4d18ad authored by Erik Kastner on 17 February 2012, 06:03:03 UTC
more example config variables
Tip revision: 2377c9b
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/']);
back to top