Skip to content

Commit d57bae2

Browse files
authored
chore: remove "Run tests with debugger" task. (#2764)
1 parent d12a9ae commit d57bae2

File tree

2 files changed

+1
-18
lines changed

2 files changed

+1
-18
lines changed

.vscode/launch.json

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,6 @@
2929
"console": "integratedTerminal",
3030
"internalConsoleOptions": "neverOpen"
3131
},
32-
{
33-
"type": "node",
34-
"request": "launch",
35-
"name": "Run tests with debugger",
36-
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
37-
"args": [
38-
"-r",
39-
"ts-node/register",
40-
"--colors",
41-
"${workspaceFolder}/packages/*/test/**/*.ts"
42-
],
43-
"env": {
44-
"TS_NODE_COMPILER_OPTIONS": "{\"esModuleInterop\":true}"
45-
},
46-
"console": "integratedTerminal",
47-
"internalConsoleOptions": "neverOpen"
48-
},
4932
{
5033
"type": "node",
5134
"request": "attach",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ This means it's easy to write tests for your changes:
165165
pnpm test
166166
```
167167

168-
For tricker issues, you can run the tests with a debugger in VSCode by setting a breakpoint (or adding `debugger` in the code) and launching the task: "Run tests with debugger".
168+
For trickier issues, you can run the tests with a debugger in VSCode by setting a breakpoint (or adding `debugger` in the code) and launching the test in the [JavaScript Debug Terminal](https://code.visualstudio.com/docs/nodejs/nodejs-debugging#_javascript-debug-terminal).
169169

170170
## Supporting Svelte
171171

0 commit comments

Comments
 (0)