Skip to content

Instantly share code, notes, and snippets.

@AttilaGal
Last active July 2, 2018 11:42
Show Gist options
  • Select an option

  • Save AttilaGal/283b524f9f0453c32c13b73879793e23 to your computer and use it in GitHub Desktop.

Select an option

Save AttilaGal/283b524f9f0453c32c13b73879793e23 to your computer and use it in GitHub Desktop.
// jasmine only:
{
"name": "Tests",
"type": "node",
"protocol": "inspector",
"request": "launch",
"program": "${workspaceRoot}/node_modules/jasmine/bin/jasmine.js",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [],
"env": {
"NODE_ENV": "test"
},
"console": "integratedTerminal",
"sourceMaps": false,
"outFiles": []
}
// with gulp:
{
"name": "Tests",
"type": "node",
"protocol": "inspector",
"request": "launch",
"program": "${workspaceRoot}/node_modules/gulp/bin/gulp.js",
"stopOnEntry": false,
"args": [
"jasmine"
],
"cwd": "${workspaceRoot}/backend/",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"console": "integratedTerminal",
"sourceMaps": false,
"outFiles": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment