Not able to perform go-to-definition functionality in feature file to navigate to step definition file in a protractor-cucumber framework
09:16 19 Aug 2019

Go-to-definition functionality not working on vs-code.

I have installed cucumber(gherkin) full support plugin.

Steps to replicate: Right click on steps on feature file and select go to definition.

Feature file

Gherkin code : When user access the Application

Step definition file

When('user access the Application', async function () {

  await PageObject.open();

});  

Expected: It should navigate to step-definitions file.

project folder structure

enter image description here

settings.json enter image description here

visual-studio protractor cucumber