SERVER-105839 Add vscode task to run current cpp unittest file (#36819)

GitOrigin-RevId: b721bc9eada436d4295f2120924ce5e1027c6906
This commit is contained in:
Mathias Stearn
2025-06-03 21:15:54 +02:00
committed by MongoDB Bot
parent 9aacc29fb5
commit 59590de78e

View File

@@ -99,7 +99,28 @@
"dependsOn": [
"_install_pymongo"
]
}
},
{
"label": "Test current file",
"type": "bazel",
"command": "run",
"targets": [
"+${fileBasenameNoExtension}",
],
"options": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
},
"group": {
"kind": "test",
"isDefault": true
}
},
]
},
"launch": {