From c19f52255c1d5496713e4f4caba47382fd10c9fc Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sat, 24 Dec 2022 17:01:07 +1100 Subject: [PATCH] add task for opening deprecated tests TUI --- .vscode/tasks.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 36274763c..5be637f47 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -57,6 +57,18 @@ "presentation": { "focus": true } + }, + { + "label": "Open deprecated test TUI", + "type": "shell", + "command": "go run pkg/integration/deprecated/cmd/tui/main.go", + "problemMatcher": [], + "group": { + "kind": "test", + }, + "presentation": { + "focus": true + } } ], }