We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6ad0993 + 8d6e2c3 commit e2a6178Copy full SHA for e2a6178
index.js
@@ -225,8 +225,8 @@ module.exports = function (config) {
225
outlineExample[headerCell] = rowCell;
226
// append actual value to example variable place holders in steps
227
if (config.includeExampleValues) {
228
- const re = new RegExp(headerCell, 'g');
229
- outlineScenario = JSON.parse(JSON.stringify(outlineScenario).replace(re, `${headerCell}:${rowCell}`));
+ const re = new RegExp(`<${headerCell}>`, 'g');
+ outlineScenario = JSON.parse(JSON.stringify(outlineScenario).replace(re, `<${headerCell}:${rowCell}>`));
230
}
231
232
0 commit comments