How to debug Cucumber in Visual Studio Code (VSCode)?
问题 I was trying to debug Cucumber scenarios in Visual Studio code and made below changes in the launch.json . { "name": "e2e", "type": "node", "request": "launch", "program": "${workspaceRoot}\\node_modules\\.bin\\cucumber-js", "stopOnEntry": false, "args": ["--no-timeouts", "--colors"], "cwd": "${workspaceRoot}", "runtimeExecutable": null, "outFiles": [ "${workspaceRoot}\\features\\step_definitions\\*.js" ] }, However, I am not able run a debug session using the above configuration. The step