UNPKG

cucumber

Version:

The official JavaScript implementation of Cucumber.

12 lines (11 loc) 420 B
var SuccessfulStepResult = function() { var self = { isFailed: function isFailed() { return false; }, isPending: function isPending() { return false; }, isSkipped: function isSkipped() { return false; }, isSuccessful: function isSuccessful() { return true; }, isUndefined: function isUndefined() { return false; } }; return self; }; module.exports = SuccessfulStepResult;