summaryrefslogtreecommitdiffstats
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-12-24 17:01:07 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-12-24 19:14:52 +1100
commitc19f52255c1d5496713e4f4caba47382fd10c9fc (patch)
tree7a0553100181ebced02bb70e551b889b7d24b4df /.vscode/tasks.json
parentfa97b0c76ee342c13aef6ddd5b06584f4c0dcbff (diff)
add task for opening deprecated tests TUI
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json12
1 files changed, 12 insertions, 0 deletions
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
+ }
}
],
}