jest-cucumber
Version:
Execute Gherkin scenarios in Jest
16 lines • 459 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Rocket = void 0;
var Rocket = /** @class */ (function () {
function Rocket() {
this.isInSpace = false;
this.boostersLanded = true;
}
Rocket.prototype.launch = function () {
this.isInSpace = true;
this.boostersLanded = true;
};
return Rocket;
}());
exports.Rocket = Rocket;
//# sourceMappingURL=rocket.js.map