@gatling.io/cli
Version:
Gatling JS is a JavaScript/TypeScript interface for the [Gatling load testing tool](https://gatling.io/).
29 lines (28 loc) • 1.38 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.program = void 0;
const commander_1 = require("commander");
const install_1 = __importDefault(require("./install"));
const build_1 = __importDefault(require("./build"));
const runOnly_1 = __importDefault(require("./runOnly"));
const run_1 = __importDefault(require("./run"));
const recorder_1 = __importDefault(require("./recorder"));
const enterprisePackage_1 = __importDefault(require("./enterprisePackage"));
const enterpriseDeploy_1 = __importDefault(require("./enterpriseDeploy"));
const enterpriseStart_1 = __importDefault(require("./enterpriseStart"));
const dependencies_1 = require("../dependencies");
exports.program = new commander_1.Command()
.name("gatling-js-cli")
.version(dependencies_1.versions.gatling.jsAdapter)
.description("The Gatling Javascript run & packaging tool");
(0, install_1.default)(exports.program);
(0, build_1.default)(exports.program);
(0, runOnly_1.default)(exports.program);
(0, run_1.default)(exports.program);
(0, recorder_1.default)(exports.program);
(0, enterprisePackage_1.default)(exports.program);
(0, enterpriseDeploy_1.default)(exports.program);
(0, enterpriseStart_1.default)(exports.program);