Skip to content

Commit

Permalink
Fix integration test debug config (#3624)
Browse files Browse the repository at this point in the history
It used to run the instrument command,
however the coverage instrumentation doesn't play well with VS Code
debugging.
Instead, I set it to run the compile command like the other debugging
configurations.

Signed-off-by: David Thompson <davthomp@redhat.com>
  • Loading branch information
datho7561 authored Nov 24, 2023
1 parent 2a4f594 commit a594e55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"${workspaceFolder}/out/**/*.js"
],
"sourceMaps": true,
"preLaunchTask": "instrument",
"preLaunchTask": "compile",
"env": {
"VSCODE_REDHAT_TELEMETRY_DEBUG":"true",
"IS_OPENSHIFT": "true",
Expand Down

0 comments on commit a594e55

Please sign in to comment.