You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"markdownDescription": "Override the command used for bench runnables.\nThe first element of the array should be the program to execute (for example, `cargo`).\n\nUse the placeholders `${package}`, `${target_arg}`, `${target}`, `${test_name}` to dynamically\nreplace the package name, target option (such as `--bin` or `--example`), the target name and\nthe test name (name of test function or test mod path).",
"markdownDescription": "Override the command used for bench runnables.\nThe first element of the array should be the program to execute (for example, `cargo`).\n\nUse the placeholders `${package}`, `${target_arg}`, `${target}`, `${test_name}` to dynamically\nreplace the package name, target option (such as `--bin` or `--example`), the target name and\nthe test name (name of test function or test mod path).",
2873
+
"default": null,
2874
+
"type": [
2875
+
"null",
2876
+
"array"
2877
+
],
2878
+
"items": {
2879
+
"type": "string"
2880
+
}
2881
+
}
2882
+
}
2883
+
},
2842
2884
{
2843
2885
"title": "Runnables",
2844
2886
"properties": {
@@ -2867,6 +2909,32 @@
2867
2909
}
2868
2910
}
2869
2911
},
2912
+
{
2913
+
"title": "Runnables",
2914
+
"properties": {
2915
+
"rust-analyzer.runnables.test.command": {
2916
+
"markdownDescription": "Subcommand used for test runnables instead of `test`.",
2917
+
"default": "test",
2918
+
"type": "string"
2919
+
}
2920
+
}
2921
+
},
2922
+
{
2923
+
"title": "Runnables",
2924
+
"properties": {
2925
+
"rust-analyzer.runnables.test.overrideCommand": {
2926
+
"markdownDescription": "Override the command used for test runnables.\nThe first element of the array should be the program to execute (for example, `cargo`).\n\nUse the placeholders `${package}`, `${target_arg}`, `${target}`, `${test_name}` to dynamically\nreplace the package name, target option (such as `--bin` or `--example`), the target name and\nthe test name (name of test function or test mod path).",
0 commit comments