aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorvsrs <[email protected]>2020-06-10 20:58:25 +0100
committervsrs <[email protected]>2020-06-18 08:15:43 +0100
commitd4e75312ba64c2541e0d97b9ad8d6e2a735882a4 (patch)
tree96a2e521edd381a574876cb6b0d90aebe381ecf7 /.vscode
parent283ec13fc06dda7ec4d22955e2d2eb96aaff95fd (diff)
Add associated type test.
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json8
1 files changed, 7 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 8ca27d878..7a2c033cb 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -120,6 +120,12 @@
120 "sourceMaps": true, 120 "sourceMaps": true,
121 "outFiles": [ "${workspaceFolder}/editors/code/out/tests/unit/**/*.js" ], 121 "outFiles": [ "${workspaceFolder}/editors/code/out/tests/unit/**/*.js" ],
122 "preLaunchTask": "Pretest" 122 "preLaunchTask": "Pretest"
123 } 123 },
124 {
125 "name": "(Windows) Attach",
126 "type": "cppvsdbg",
127 "request": "attach",
128 "processId": "${command:pickProcess}"
129 }
124 ] 130 ]
125} 131}