Skip to content

Instantly share code, notes, and snippets.

@cabezayunke
Last active March 16, 2023 18:48
Show Gist options
  • Save cabezayunke/1ed1b457a207b3ae33df4f3ae2622a6b to your computer and use it in GitHub Desktop.
Save cabezayunke/1ed1b457a207b3ae33df4f3ae2622a6b to your computer and use it in GitHub Desktop.
vscode jestrunner settings
{
"jestrunner.jestCommand": "jest --config ./jest.config.js",
"jestrunner.jestPath": "${workspaceRoot}/node_modules/.bin/jest",
"jestrunner.debugOptions": {
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/jest",
"args": ["--runInBand", "--no-cache"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment