From 0ac869a415ee446746fa8a12d9c2e7a8f0e48634 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sun, 19 Feb 2023 13:38:07 +1100 Subject: [PATCH] allow syncing tests from vscode --- .vscode/tasks.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 5be637f47..f0d10c7e4 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -69,6 +69,18 @@ "presentation": { "focus": true } - } + }, + { + "label": "Sync tests list", + "type": "shell", + "command": "go generate ./...", + "problemMatcher": [], + "group": { + "kind": "test", + }, + "presentation": { + "focus": true + } + }, ], }