diff options
author | Valery Piashchynski <[email protected]> | 2021-01-07 01:06:50 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-01-07 01:06:50 +0300 |
commit | c1465d3bcdf24a78440300aa51e7cfc92ce874a8 (patch) | |
tree | 6e0f5107eba90df73724b6611ca6adfa148d2a3f /.vscode | |
parent | c9f670ee734355cbc5d504186946b7db67cf62b5 (diff) |
KV, updated, bug fixed, with intergration tests via plugins
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 16 | ||||
-rw-r--r-- | .vscode/settings.json | 1 |
2 files changed, 9 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 diff --git a/.vscode/settings.json b/.vscode/settings.json index 70a50b98..78560788 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,6 +8,7 @@ "cSpell.words": [ "asdf", "bbolt", + "gofiber", "stopc", "treshholdc" ] |