LoginSignup
1
0

More than 3 years have passed since last update.

【VSCode|Jest】VSCodeでJESTをデバッグする最小構成

Posted at

vscodeでjestのデバッグをする時に少し躓いたのでメモ。

launch.json
{
    "version": "0.2.0",
    "configurations": [
        {
          "type": "node",
          "request": "launch",
          "name": "JEST",
          "cwd": "${workspaceFolder}/etc/", // jest.config.jsなどがワークスペースルートにない時に指定してあげる
          "program": "${workspaceFolder}/etc/node_modules/.bin/jest",
          "protocol": "inspector",
          "args": [ "--runInBand" ],
      }
      ]
}

ポイント: cwdjest.config.js ファイルなどが存在するディレクトリを指定する

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0