Browse Source
workflow: cross platform vscode jest debugging (#414)
remove no longer needed proxy script
pull/1355/head
Cr
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
5 additions and
9 deletions
-
.vscode/launch.json
-
scripts/jest.js
|
|
@ -8,7 +8,7 @@ |
|
|
|
"name": "Jest", |
|
|
|
"type": "node", |
|
|
|
"request": "launch", |
|
|
|
"program": "${workspaceFolder}/scripts/jest.js", |
|
|
|
"program": "${workspaceFolder}/node_modules/.bin/jest", |
|
|
|
"stopOnEntry": false, |
|
|
|
"args": ["${fileBasename}", "--runInBand", "--detectOpenHandles"], |
|
|
|
"cwd": "${workspaceFolder}", |
|
|
@ -19,7 +19,10 @@ |
|
|
|
"NODE_ENV": "development" |
|
|
|
}, |
|
|
|
"console": "integratedTerminal", |
|
|
|
"sourceMaps": true |
|
|
|
"sourceMaps": true, |
|
|
|
"windows": { |
|
|
|
"program": "${workspaceFolder}/node_modules/jest/bin/jest", |
|
|
|
} |
|
|
|
} |
|
|
|
] |
|
|
|
} |
|
|
@ -1,7 +0,0 @@ |
|
|
|
/** |
|
|
|
* This file is the entry for debug single test file in vscode |
|
|
|
* |
|
|
|
* Not using node_modules/.bin/jest due to cross platform issues, see |
|
|
|
* https://github.com/microsoft/vscode-recipes/issues/107
|
|
|
|
*/ |
|
|
|
require('jest').run(process.argv) |