module.exports = test
var testCmd = require("./utils/lifecycle.js").cmd("test")
functiontest (args, cb) {
testCmd(args, function (er) {
if (!er) returncb()
if (er.code === "ELIFECYCLE") {
returncb("Test failed. See above for more details.")
}
returncb(er)
})
}