Gauge VS code extension : 0.1.0 getgauge : 0.3.17
Issue: Trying to debug external code (Framework library) from Gauge test, but keep getting warning and the debug happens only on my current file
Frame skipped from debugging during step-in.
Note: may have been skipped because of "justMyCode" option (default == true). Try setting "justMyCode": false in the debug configuration (e.g., launch.json)
I have even set launch.json as below but no use (I have tried multiple suggestion from this forum none works for Gauge, note: this issue does not happen for default python debug)
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "Python: Debug Unit Tests",
"type": "python",
"request": "launch",
"purpose": ["debug-test"],
"console": "integratedTerminal",
"justMyCode": false
}
]
}