Skip to content

Instantly share code, notes, and snippets.

@noce2
Created December 3, 2021 12:03
Show Gist options
  • Save noce2/755b24c34d9b7ee8452bef67ece70d74 to your computer and use it in GitHub Desktop.
Save noce2/755b24c34d9b7ee8452bef67ece70d74 to your computer and use it in GitHub Desktop.
Orta Jest Extension VsCode Setup with NVM
{
"configurations": [
{
"type": "node",
"name": "vscode-jest-tests",
"request": "launch",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"program": "~/.nvm/versions/node/v12.22.6/bin/yarn",
"cwd": "${workspaceFolder}",
"args": [
"test",
"--",
"--runInBand",
"--watchAll=false"
],
"runtimeVersion": "12.22.6"
}
]
}
{
"jest.jestCommandLine": ". ~/.nvm/nvm.sh && nvm use 12 && yarn test --",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment