UNPKG

skutter

Version:

Skutter: Opinionated BDD Browser based test framework

13 lines (12 loc) 444 B
"use strict"; const process_message_1 = require("./process-message"); class StepStartedMessage extends process_message_1.ProcessMessage { constructor(featureId, scenarioId, stepId) { super(StepStartedMessage.messageType); this.featureId = featureId; this.scenarioId = scenarioId; this.stepId = stepId; } } StepStartedMessage.messageType = "step-started"; exports.StepStartedMessage = StepStartedMessage;