gauge-ts
Version:
Typescript runner for Gauge
24 lines (23 loc) • 485 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Scenario = void 0;
class Scenario {
_name;
_isFailing;
_tags;
constructor(name, isFailing, tags) {
this._name = name;
this._isFailing = isFailing;
this._tags = tags;
}
getName() {
return this._name;
}
getIsFailing() {
return this._isFailing;
}
getTags() {
return this._tags;
}
}
exports.Scenario = Scenario;