Visual Studio Code デバッガーを Jest テストで動作させるのに苦労しています。
これが私のlaunch.jsonです:
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest All",
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
"args": ["--runInBand"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"sourceMaps": true
}
]
}
いくつかのブレークポイントを使用した Jest テストを次に示します。
緑の再生ボタンを押してデバッガーでテストを実行すると、ブレークポイントがヒットしません。
どんな助けでもいただければ幸いです