I was able to configure a keyboard shortcut to run all project tests with the following configuration at keybindings.json.
(...)
{
"key": "ctrl+t",
"command": "java.test.explorer.run",
"when": "resourceLangId == java"
}
(...)
But I want to be able to configure 2 more shortcuts to:
- Run all tests from the current file
- Run test from the current focused method
Is there a way to do so?
I was able to configure a keyboard shortcut to run all project tests with the following configuration at
keybindings.json.But I want to be able to configure 2 more shortcuts to:
Is there a way to do so?