I am using feature-mode with a newer version of cucumber where brace placeholders are the preferred method of type substitution (e.g. {word}, {string}, {int}). This PR simply converts those placeholders into TOKEN in the existing logic, which causes them to be replaced with (.*) regex and matched against corresponding step definitions.
I ran the tests and verified they still pass per the README, and this works correctly per my expectations on my local system.
…s in newer cucumber
I am using feature-mode with a newer version of cucumber where brace placeholders are the preferred method of type substitution (e.g.
{word}
,{string}
,{int}
). This PR simply converts those placeholders intoTOKEN
in the existing logic, which causes them to be replaced with(.*)
regex and matched against corresponding step definitions.I ran the tests and verified they still pass per the README, and this works correctly per my expectations on my local system.