Closed jiriskacel closed 5 years ago
This is a problem since extension version 2.13.0 as in to 2.12.1 it works.
Description If there is in any step file the string Date('${date}'), the Go to Definition (F12) stops here for some steps.
Date('${date}')
To Reproduce
steps.1.ts Given(/first step/, ...);
steps.1.ts
Given(/first step/, ...);
steps.2.ts `Date('${date}')`; steps.3.ts Given(/second step/, ...);
steps.2.ts
`Date('${date}')`;
steps.3.ts
Given(/second step/, ...);
Given first step And second step
F12
"cucumberautocomplete.stepRegExSymbol": "/" in 2.14.0 version of extension should fix your problem
"cucumberautocomplete.stepRegExSymbol": "/"
This is a problem since extension version 2.13.0 as in to 2.12.1 it works.
Description If there is in any step file the string
Date('${date}')
, the Go to Definition (F12) stops here for some steps.To Reproduce
F12
on the first line will take you to the right definitionF12
on the second line will take you to the Date string in wrong file