improve tests (#3405)
This commit is contained in:
16
test/release/run.js
Normal file
16
test/release/run.js
Normal file
@@ -0,0 +1,16 @@
|
||||
var child_process = require("child_process");
|
||||
|
||||
module.exports = function(tasks) {
|
||||
(function next() {
|
||||
if (!tasks.length) return;
|
||||
var args = tasks.shift();
|
||||
console.log();
|
||||
console.log("\u001B[36m$> " + args.join(" ") + "\u001B[39m");
|
||||
var result = child_process.spawn(process.argv[0], args, {
|
||||
stdio: [ "ignore", 1, 2 ]
|
||||
}).on("exit", function(code) {
|
||||
if (code != 0) process.exit(code);
|
||||
next();
|
||||
});
|
||||
})();
|
||||
};
|
||||
Reference in New Issue
Block a user