@ton-actions/tondev-contest
Version:
TON Dev Environment
22 lines • 677 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.tsRunCommand = void 0;
const path_1 = __importDefault(require("path"));
exports.tsRunCommand = {
name: "run",
title: "Run Test",
args: [{
isArg: true,
name: "file",
type: "file",
nameRegExp: /\.test\.py$/,
},
],
async run(terminal, args) {
terminal.log(`${path_1.default.basename(args.file)} test passed`);
},
};
//# sourceMappingURL=run.js.map