UNPKG

294 BJavaScriptView Raw
1module.exports = test
2
3var testCmd = require("./utils/lifecycle.js").cmd("test")
4
5function test (args, cb) {
6 testCmd(args, function (er) {
7 if (!er) return cb()
8 if (er.code === "ELIFECYCLE") {
9 return cb("Test failed. See above for more details.")
10 }
11 return cb(er)
12 })
13}