summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json16
1 files changed, 8 insertions, 8 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 3cf21fed..f43ef860 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -5,6 +5,13 @@
"version": "0.2.0",
"configurations": [
{
+ "name": "Launch test file",
+ "type": "go",
+ "request": "launch",
+ "mode": "test",
+ "program": "${file}"
+ },
+ {
"name": "Launch main debug, race",
"type": "go",
"request": "launch",
@@ -13,13 +20,6 @@
"buildFlags": "-race",
"args": ["serve", "-c", "../.rr.yaml"],
"program": "${workspaceFolder}/cmd/main.go"
- },
- {
- "name": "Launch file",
- "type": "go",
- "request": "launch",
- "mode": "debug",
- "program": "${file}"
- },
+ }
]
} \ No newline at end of file