UNPKG

@makingchatbots/genesys-cloud-chatbot-tester-cli

Version:

[![npm](https://img.shields.io/npm/v/@makingchatbots/genesys-cloud-chatbot-tester-cli)](https://www.npmjs.com/package/@makingchatbots/genesys-cloud-chatbot-tester-cli) [![Follow me on LinkedIn for updates](https://img.shields.io/badge/Follow%20for%20updat

12 lines (11 loc) 668 B
"use strict"; 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)); }