-1
// myCustomCommand.js
module.exports = function () {
  this.SOME_NIGHTWATCH_COMMAND(...) // fails, undefined
  this.api.SOME_NIGHTWATCH_COMMAND(...) // works
}

Anybody know what's going on?

dwoodwardgb
  • 163
  • 5
  • 10

1 Answers1

0

module.exports.command = ... instead of module.exports = ...

dwoodwardgb
  • 163
  • 5
  • 10