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
parent
commit
b015892de6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      .vscode/launch.json
  2. 7
      scripts/jest.js

7
.vscode/launch.json

@ -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",
}
}
]
}

7
scripts/jest.js

@ -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)
Loading…
Cancel
Save