-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
Description
Hello,
I am looking at timmy.js where I see in order to test conversation flow mentioned in script array a new dialog '/' has been defined. I was wondering what if I need to test my dialog from my Bot app.
Ex: I have following dialog which triggers by LUIS intent help/
bot.dialog('Help', function (session) {
session.send("Hello, I can help you to reserve a meeting room.")
});
session.endDialog();
}).triggerAction({
matches: 'Help'
});
I don't want re-write this dialog as shows in timmy.js.
Reactions are currently unavailable