@makingchatbots/genesys-cloud-chatbot-tester-cli
Version:
[](https://www.npmjs.com/package/@makingchatbots/genesys-cloud-chatbot-tester-cli) [ • 668 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.createCli = createCli;
const commander_1 = require("commander");
const createScriptedTestCommand_1 = require("./commands/scriptedTest/createScriptedTestCommand");
const createAiTestCommand_1 = require("./commands/aiTest/createAiTestCommand");
function createCli(command = new commander_1.Command(), scenarioTestCommandDependencies, aiCommandDependencies) {
return command
.addCommand((0, createScriptedTestCommand_1.createScriptedTestCommand)(scenarioTestCommandDependencies))
.addCommand((0, createAiTestCommand_1.createAiTestCommand)(aiCommandDependencies));
}