steps_file.js 281 B

12345678910111213
  1. 'use strict';
  2. // in this file you can append custom step methods to 'I' object
  3. module.exports = function() {
  4. return actor({
  5. // Define custom steps here, use 'this' to access default methods of I.
  6. // It is recommended to place a general 'login' function here.
  7. });
  8. }