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:
authorMatt Bierner <matb@microsoft.com>2020-07-30 00:05:36 +0300
committerMatt Bierner <matb@microsoft.com>2020-07-30 00:05:44 +0300
commitbdd3721849537601fdfd9e4b99b7159745f12b76 (patch)
tree3e72f4b078c5ddb339fdfef1b4cc6042e1921653 /.vscode/launch.json
parentd4d1e3b2c8d9d718599df0291663e2d27765c54f (diff)
Add custom editor test extension
Adds a simple set of tests for custom editors in a new extension. This is currently not run during CI since we want more testing to make sure it is reliable
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 14bceb63786..9051afc7e8c 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -177,6 +177,24 @@
}
},
{
+ "type": "extensionHost",
+ "request": "launch",
+ "name": "VS Code Custom Editor Tests",
+ "runtimeExecutable": "${execPath}",
+ "args": [
+ "${workspaceFolder}/extensions/vscode-custom-editor-tests/test-workspace",
+ "--extensionDevelopmentPath=${workspaceFolder}/extensions/vscode-custom-editor-tests",
+ "--extensionTestsPath=${workspaceFolder}/extensions/vscode-custom-editor-tests/out/test"
+ ],
+ "outFiles": [
+ "${workspaceFolder}/out/**/*.js"
+ ],
+ "presentation": {
+ "group": "5_tests",
+ "order": 6
+ }
+ },
+ {
"type": "chrome",
"request": "attach",
"name": "Attach to VS Code",