skutter
Version:
Skutter: Opinionated BDD Browser based test framework
17 lines (16 loc) • 651 B
JavaScript
;
const process_message_1 = require("./process-message");
class SubStepStartedMessage extends process_message_1.ProcessMessage {
constructor(featureId, scenarioId, ancestorStepId, parentStepId, stepId, title, depth) {
super(SubStepStartedMessage.messageType);
this.featureId = featureId;
this.scenarioId = scenarioId;
this.ancestorStepId = ancestorStepId;
this.parentStepId = parentStepId;
this.stepId = stepId;
this.title = title;
this.depth = depth;
}
}
SubStepStartedMessage.messageType = "sub-step-started";
exports.SubStepStartedMessage = SubStepStartedMessage;