UNPKG

jest-allure2-reporter

Version:
13 lines 468 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.normalizeParameters = normalizeParameters; function normalizeParameters(result) { return result.parameters?.filter(excludeParameters).map(stringifyParameter); } function excludeParameters({ excluded }) { return !excluded; } function stringifyParameter(parameter) { return { ...parameter, value: String(parameter.value) }; } //# sourceMappingURL=normalizeParameters.js.map