UNPKG

skutter

Version:

Skutter: Opinionated BDD Browser based test framework

16 lines (15 loc) 544 B
"use strict"; const process_message_1 = require("./process-message"); class StepSkippedMessage extends process_message_1.ProcessMessage { constructor(featureId, scenarioId, stepId, reason) { super(StepSkippedMessage.messageType); this.featureId = featureId; this.scenarioId = scenarioId; this.stepId = stepId; this.reason = reason; this.errorMessage = ""; this.errorStack = ""; } } StepSkippedMessage.messageType = "step-skipped"; exports.StepSkippedMessage = StepSkippedMessage;