Skip to content

Instantly share code, notes, and snippets.

@melvinkcx
Last active April 9, 2019 00:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save melvinkcx/2412a4c83507257f5f5c04cdbabf2a50 to your computer and use it in GitHub Desktop.
Save melvinkcx/2412a4c83507257f5f5c04cdbabf2a50 to your computer and use it in GitHub Desktop.
VSCode Debugger Configuration - Run yarn test
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Run yarn test",
"runtimeExecutable": "yarn",
"runtimeArgs": [
"test"
],
"cwd": "${workspaceRoot}/",
"skipFiles": [
"${workspaceRoot}/node_modules/**/*.js", // Skip all external libs
"<node_internals>/**/*.js" // Skip all node internal code
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment