vscode-jest
vscode-jest copied to clipboard
Add support for vscode 1.11's custom tasks from extensions
https://github.com/Microsoft/vscode-docs/blob/dcc67a910a0e3cdfbc2636a03f0d268b173082ca/release-notes/v1_11.md#tasks
We could add this to the tasks:
{
"name": "Run Tests With Debugger (slower, use npm run watch for normal work)",
"type": "node",
"request": "launch",
"port": 5858,
"address": "localhost",
"stopOnEntry": false,
"runtimeExecutable": null,
"runtimeArgs": [
"--debug-brk",
"./node_modules/.bin/jest",
"-i"
],
"cwd": "${workspaceRoot}",
"sourceMaps": true
}
We can also convert the whole output to use tasks - this means we can get the terminal to render the output (then we can show colours)
I'm wondering what would be needed to run the output in the integrated terminal instead of the output channel, that way the interactive commands will work perfectly
It could be worth looking at https://github.com/CzBuCHi/vscode-jest-runner to see if this extension does that
This issue has been inactive for over a year and has been marked as stale. It will be automatically closed in 30 days if no further activity occurs. Since significant changes have occurred in the codebase, please open a new issue with updated details if the problem still persists.