UNPKG

yachr

Version:

Yet another cucumber html reporter

29 lines 1.14 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ResultStatus = void 0; /** * Lists the possible result statuses for a step result in the Cucumber * report */ var ResultStatus; (function (ResultStatus) { /** The step has passed execution */ ResultStatus["passed"] = "passed"; /** The step has encountered an error or failed an assertion */ ResultStatus["failed"] = "failed"; /** The Gherkin step has no Cucumber implementation */ ResultStatus["undefined"] = "undefined"; /** The Gherkin step has a Cucumber implementation defined, but it is not implemented */ ResultStatus["pending"] = "pending"; /** * The Gherkin step has two matching Cucumber step definitions which cannot be distinguished. * This prevents the Cucumber Test Runner from running the step. */ ResultStatus["ambiguous"] = "ambiguous"; /** * Skipped can occur in a Cucumber Test Report * when a preceeding step fails */ ResultStatus["skipped"] = "skipped"; })(ResultStatus || (exports.ResultStatus = ResultStatus = {})); //# sourceMappingURL=resultStatus.js.map