Created
January 8, 2021 15:52
-
-
Save bottlenecked/a0df6742b5da5bc3beedbc7aae267e90 to your computer and use it in GitHub Desktop.
VS Code keybindings for running tests
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"key": "ctrl+t t", | |
"command": "workbench.action.tasks.runTask", | |
"args": "Run All Tests" | |
}, | |
{ | |
"key": "ctrl+t ctrl+f", | |
"command": "workbench.action.tasks.runTask", | |
"args": "Run Failed Tests" | |
}, | |
{ | |
"key": "ctrl+t f", | |
"command": "workbench.action.tasks.runTask", | |
"args": "Test Current File" | |
}, | |
{ | |
"key": "ctrl+t c", | |
"command": "workbench.action.tasks.runTask", | |
"args": "Run Current Test" | |
}, | |
{ | |
"key": "ctrl+t a", | |
"command": "workbench.action.tasks.runTask", | |
"args": "Store Current Test" | |
}, | |
{ | |
"key": "ctrl+t shift+a", | |
"command": "workbench.action.tasks.runTask", | |
"args": "Store Current Test File" | |
}, | |
{ | |
"key": "ctrl+t s", | |
"command": "workbench.action.tasks.runTask", | |
"args": "Run Stored Test" | |
}, | |
{ | |
"key": "ctrl+t d", | |
"command": "workbench.action.tasks.runTask", | |
"args": "Delete Stored Test" | |
}, | |
{ | |
"key": "ctrl+shift+s", | |
"command": "workbench.action.files.saveAll" | |
}, | |
{ | |
"key": "ctrl+tab", | |
"command": "workbench.action.openNextRecentlyUsedEditorInGroup", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "shift+ctrl+tab", | |
"command": "workbench.action.openPreviousRecentlyUsedEditorInGroup", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+tab", | |
"command": "workbench.action.terminal.focusNext", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+shift+tab", | |
"command": "workbench.action.terminal.focusPrevious", | |
"when": "terminalFocus" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment