Chore: Fix Debug Jest test command for vscode (#45420)

This commit is contained in:
Zoltán Bedi
2022-02-17 14:18:09 +01:00
committed by GitHub
parent 47e248ceab
commit 815ccb1a03

3
.vscode/launch.json vendored
View File

@@ -15,7 +15,8 @@
"name": "Debug Jest test",
"type": "node",
"request": "launch",
"runtimeArgs": ["--inspect-brk", "${workspaceRoot}/node_modules/.bin/jest", "--runInBand", "${file}"],
"runtimeExecutable": "yarn",
"runtimeArgs": ["run", "jest", "--runInBand", "${file}"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"port": 9229