diff options
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 12 | ||||
-rw-r--r-- | .vscode/settings.json | 3 |
2 files changed, 14 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 7c3d99c..c12c80c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -17,6 +17,18 @@ "showLog": false }, { + "name": "XDS-Server-Test", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceRoot}/test", + "env": { + "GOPATH": "${workspaceRoot}/../../../../../..:${env:GOPATH}", + }, + "args": ["-test.v", "-test.run", ".*"], + "showLog": false + }, + { "name": "XDS-Server local dev", "type": "go", "request": "launch", diff --git a/.vscode/settings.json b/.vscode/settings.json index c556d7f..45cbe81 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -21,7 +21,8 @@ "bin": true, "tools": true, "webapp/dist": true, - "webapp/node_modules": true + "webapp/node_modules": true, + "**/*~": true }, // Specify paths/files to ignore. (Supports Globs) "cSpell.ignorePaths": [ |