是否可以在 Cypress 中从特征文件导航到步骤定义,反之亦然 (VSCode)

Is it possible to navigate from feature file to step definition and vice versa in Cypress (VSCode)

我正在使用 cypress cucumber 测试框架和 IDE VSCode 我找不到从功能导航到步骤定义的方法,反之亦然。我已经在 vs code 中安装了 Cucumber (Gherkin) Full Support 扩展,但没有帮助

是否有任何配置可以实现从功能到步骤定义的导航?

请导航至 VSCode 文件 > 首选项 > 设置(代码 > 首选项 > Mac 上的设置) 然后 select 工作区.

从右上角打开 settings.json 文件。

settings.json 文件中设置以下设置并保存文件。请保留您的文件层次结构。

"cucumberautocomplete.steps": [
     "cypress/integration/*/*.js"
   ],
"cucumberautocomplete.syncfeatures": "cypress/integration/*.feature",
"cucumberautocomplete.strictGherkinCompletion": false,
"cucumberautocomplete.smartSnippets": true,
"cucumberautocomplete.stepsInvariants": true

现在打开你的功能文件,将光标放在步骤线上,按 CTRL 右键单击​​ 按 F12