Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Lantz <clantz@microsoft.com>2020-06-02 06:46:08 +0300
committerChuck Lantz <clantz@microsoft.com>2020-06-02 06:46:08 +0300
commit6ab27c4d8cbe77aca7ddde706c69ec59fd6255e0 (patch)
tree5cb5f0ce456434050ed04079295d04a7e90c6fb9 /.vscode/launch.json
parent37a3496bb050538c67940d9c846334ecba1e032b (diff)
Development container for VS Code
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json26
1 files changed, 20 insertions, 6 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 3fe3be010e9..6a423332b10 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -26,6 +26,7 @@
"type": "pwa-chrome",
"request": "attach",
"name": "Attach to Shared Process",
+ "timeout": 30000,
"port": 9222,
"urlFilter": "*sharedProcess.html*",
"presentation": {
@@ -57,6 +58,7 @@
"type": "node",
"request": "attach",
"name": "Attach to Main Process",
+ "timeout": 30000,
"port": 5875,
"outFiles": [
"${workspaceFolder}/out/**/*.js"
@@ -170,7 +172,7 @@
"${workspaceFolder}/out/**/*.js"
],
"presentation": {
- "group": "6_tests",
+ "group": "5_tests",
"order": 6
}
},
@@ -217,10 +219,7 @@
"type": "node",
"request": "launch",
"name": "VS Code (Web)",
- "runtimeExecutable": "yarn",
- "runtimeArgs": [
- "web"
- ],
+ "program": "${workspaceFolder}/scripts/code-web.js",
"presentation": {
"group": "0_vscode",
"order": 2
@@ -274,7 +273,7 @@
{
"type": "node",
"request": "launch",
- "name": "HTML Unit Tests",
+ "name": "HTML Server Unit Tests",
"program": "${workspaceFolder}/extensions/html-language-features/server/test/index.js",
"stopOnEntry": false,
"cwd": "${workspaceFolder}/extensions/html-language-features/server",
@@ -287,6 +286,21 @@
}
},
{
+ "type": "node",
+ "request": "launch",
+ "name": "CSS Server Unit Tests",
+ "program": "${workspaceFolder}/extensions/css-language-features/server/test/index.js",
+ "stopOnEntry": false,
+ "cwd": "${workspaceFolder}/extensions/css-language-features/server",
+ "outFiles": [
+ "${workspaceFolder}/extensions/css-language-features/server/out/**/*.js"
+ ],
+ "presentation": {
+ "group": "5_tests",
+ "order": 10
+ }
+ },
+ {
"type": "extensionHost",
"request": "launch",
"name": "Markdown Extension Tests",