https://github.com/statsd/statsd
Raw File
Tip revision: 7c07eec4e7cebbd376d8313b230cea96c6571423 authored by Elliot Blackburn on 22 August 2023, 12:52:19 UTC
Correct container image tagging
Tip revision: 7c07eec
run_tests.js
#!/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)
});
back to top