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:
authorrebornix <penn.lv@gmail.com>2020-04-23 21:55:23 +0300
committerrebornix <penn.lv@gmail.com>2020-04-23 21:55:23 +0300
commitb9eafe5f664eab08d228aa90af42e6a534a2b043 (patch)
tree6699f2099281f8a5b77793fb4bc6f869749cfcab /.vscode/launch.json
parentab42ffc44c709aded523b15399a070ae8c724824 (diff)
intergration tests.
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 4d0ff8dc65e..7dce15a5f75 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -160,6 +160,24 @@
}
},
{
+ "type": "extensionHost",
+ "request": "launch",
+ "name": "VS Code Notebook Tests",
+ "runtimeExecutable": "${execPath}",
+ "args": [
+ "${workspaceFolder}/extensions/vscode-notebook-tests/test",
+ "--extensionDevelopmentPath=${workspaceFolder}/extensions/vscode-notebook-tests",
+ "--extensionTestsPath=${workspaceFolder}/extensions/vscode-notebook-tests/out"
+ ],
+ "outFiles": [
+ "${workspaceFolder}/out/**/*.js"
+ ],
+ "presentation": {
+ "group": "6_tests",
+ "order": 6
+ }
+ },
+ {
"type": "chrome",
"request": "attach",
"name": "Attach to VS Code",