All files / botbuilder-unit/src/messages BaseScriptStep.js

100% Statements 8/8
100% Branches 0/0
100% Functions 2/2
100% Lines 8/8
1 2 3 4 5 6 7 8 9 10 11 12 13  200x 200x 200x 200x 200x     1x 200x     1x
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;