vscode-jest icon indicating copy to clipboard operation
vscode-jest copied to clipboard

Add support for vscode 1.11's custom tasks from extensions

Open orta opened this issue 8 years ago • 4 comments

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
    }

orta avatar Apr 04 '17 08:04 orta

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)

orta avatar Apr 04 '17 08:04 orta

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

Haroenv avatar Jul 31 '17 11:07 Haroenv

It could be worth looking at https://github.com/CzBuCHi/vscode-jest-runner to see if this extension does that

orta avatar Jul 31 '17 13:07 orta

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.

github-actions[bot] avatar Apr 10 '25 03:04 github-actions[bot]