Skip to content

Commit

Permalink
workflow: cross platform vscode jest debugging (#414)
Browse files Browse the repository at this point in the history
remove no longer needed proxy script
  • Loading branch information
a631807682 committed Jun 12, 2020
1 parent c7cd386 commit b015892
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
7 changes: 5 additions & 2 deletions .vscode/launch.json
Expand Up @@ -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}",
Expand All @@ -19,7 +19,10 @@
"NODE_ENV": "development"
},
"console": "integratedTerminal",
"sourceMaps": true
"sourceMaps": true,
"windows": {
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
}
}
]
}
7 changes: 0 additions & 7 deletions scripts/jest.js

This file was deleted.

0 comments on commit b015892

Please sign in to comment.