botbuilder-unit
Version:
Unit tests for chatbot dialogs
13 lines (11 loc) • 351 B
JavaScript
function BaseScriptMessage(step, config, bot, logReporter, prevStepPromise) {
this.config = config;
this.bot = bot;
this.logReporter = logReporter;
this.step = step;
this.stepFinishedPromise = null;
}
BaseScriptMessage.prototype.getStepFinishedPromise = function() {
return this.stepFinishedPromise;
}
module.exports = BaseScriptMessage;