You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Launch configurations now support a postDebugTask (in addition to the preLaunchTask). A postDebugTask is executed at the end of a debug session and when the user has restarted a debug session with the "Restart" button.
But postDebugTask is not executed for a debug session that restarts automatically. An example is a nodemon session that restarts whenever the source is modified.
For verification on macOS it is convenient to define audible tasks, e.g.:
Refs: #11522
Complexity: 3
Launch configurations now support a
postDebugTask
(in addition to thepreLaunchTask
). ApostDebugTask
is executed at the end of a debug session and when the user has restarted a debug session with the "Restart" button.But
postDebugTask
is not executed for a debug session that restarts automatically. An example is a nodemon session that restarts whenever the source is modified.For verification on macOS it is convenient to define audible tasks, e.g.:
Now you can use these tasks for your testing:
postDebugTask
is called at the end of a simple debug sessionpostDebugTask
is called when debugging an extensionpostDebugTask
is called when using nodemon (use the nodemon snippet to quickly create a nodemon launch config)launch.json
verify thatpostDebugTask
is suggested via intelisense and that there is a hoverThe text was updated successfully, but these errors were encountered: