Skip to content

Commit

Permalink
feat(debug): Debugger launch config for test (#423)
Browse files Browse the repository at this point in the history
So that we can easily debugging the test cases.
  • Loading branch information
cwahbong authored Oct 23, 2024
1 parent b01fdbc commit 81fe29d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@
"args": ["--server=4711"],
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/src/**/*.js"]
},
{
"name": "Launch Extension Tests",
"type": "extensionHost",
"request": "launch",
"testConfiguration": "${workspaceFolder}/.vscode-test.js",
"args": ["--extensionDevelopmentPath=${workspaceFolder}"]
}
],
"compounds": [
Expand All @@ -30,6 +37,13 @@
"Launch Extension",
"Launch Debug Server"
]
},
{
"name": "Extension Tests and Debug Server",
"configurations": [
"Launch Extension Tests",
"Launch Debug Server"
]
}
]
}

0 comments on commit 81fe29d

Please sign in to comment.