All files / src/messages BaseScriptStep.js

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