cypress-cucumber-steps
Version:
Cypress Cucumber step definitions
26 lines • 563 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.When_I_log = When_I_log;
var cypress_cucumber_preprocessor_1 = require("@badeball/cypress-cucumber-preprocessor");
/**
* When I log:
*
* ```gherkin
* When I log {string}
* ```
*
* @example
*
* ```gherkin
* When I log "Hello, world!"
* ```
*
* @remarks
*
* Prints a message to the Cypress Command Log.
*/
function When_I_log(message) {
cy.log(message);
}
(0, cypress_cucumber_preprocessor_1.When)('I log {string}', When_I_log);
//# sourceMappingURL=log.js.map