cypress-cucumber-steps
Version:
Cypress Cucumber step definitions
30 lines • 634 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.When_I_pause = When_I_pause;
var cypress_cucumber_preprocessor_1 = require("@badeball/cypress-cucumber-preprocessor");
/**
* When I pause:
*
* ```gherkin
* When I pause
* ```
*
* @example
*
* ```gherkin
* When I pause
* ```
*
* @remarks
*
* Stops `cy` commands from running and allows interaction with the application under test.
*
* @see
*
* - {@link When_I_debug | When I debug}
*/
function When_I_pause() {
cy.pause();
}
(0, cypress_cucumber_preprocessor_1.When)('I pause', When_I_pause);
//# sourceMappingURL=pause.js.map