firsttris / vscode-jest-runner

Simple way to run or debug one or more tests from context menu, codelens or command plalette
https://marketplace.visualstudio.com/items?itemName=firsttris.vscode-jest-runner
MIT License
265 stars 124 forks source link

Idea: Simplify Debug Mode #360

Open firsttris opened 5 months ago

firsttris commented 5 months ago

Idea is to use the same logic for Debug as we use for Run Jest (create a CLI Command). Instead of opening the normal terminal - we open the integrated debug terminal, and we should be able to use the same logic as we are using for Run Jest.

this would simplify and align the logic in the extension.

firsttris commented 5 months ago

@domsleee what do you think about this idea?

firsttris commented 4 months ago

from my research there is no other way to just open the debug terminal (like you can do it from the vscode ui) with the API.

the only way is the one we currently have implemented.