cucumber
Version:
The official JavaScript implementation of Cucumber.
30 lines (25 loc) • 1.39 kB
JavaScript
;
var _mocha = require("mocha");
var _chai = require("chai");
var _status = _interopRequireWildcard(require("./status"));
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
(0, _mocha.describe)('Status', () => {
(0, _mocha.describe)('constants', () => {
(0, _mocha.it)('exposes the proper constants', () => {
(0, _chai.expect)(_status.default).to.include.keys(['AMBIGUOUS', 'FAILED', 'PASSED', 'PENDING', 'SKIPPED', 'UNDEFINED']);
});
});
(0, _mocha.describe)('getStatusMapping', () => {
(0, _mocha.it)('returns a mapping of the statuses with the given initial value', () => {
const result = (0, _status.getStatusMapping)(0);
(0, _chai.expect)(result).to.eql({
[_status.default.AMBIGUOUS]: 0,
[_status.default.FAILED]: 0,
[_status.default.PASSED]: 0,
[_status.default.PENDING]: 0,
[_status.default.SKIPPED]: 0,
[_status.default.UNDEFINED]: 0
});
});
});
});