UNPKG

@terra-money/houston

Version:
24 lines (23 loc) 586 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.testScripts = void 0; function test(program) { program.command('test [scripts]', 'execute test scripts') .action((scripts) => { exports.testScripts(scripts); }); program.parse(process.argv); } module.exports = test; const testScripts = (scripts) => { if (scripts === "undefined") { let testScripts = []; testScripts.map((script) => { }); } else { scripts.map((script) => { }); } }; exports.testScripts = testScripts;