Skip to content

Instantly share code, notes, and snippets.

@ARTUR-ZH
Last active April 13, 2018 14:37
Show Gist options
  • Select an option

  • Save ARTUR-ZH/8f4c3148820c33cf6ac5f856586cbaba to your computer and use it in GitHub Desktop.

Select an option

Save ARTUR-ZH/8f4c3148820c33cf6ac5f856586cbaba to your computer and use it in GitHub Desktop.
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Docker: Attach to Node",
"port": 5555,
"address": "localhost",
"localRoot": "${workspaceFolder}",
"remoteRoot": "/build",
"protocol": "inspector"
},
{
"type": "node",
"request": "launch",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"-u",
"tdd",
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/tests/unit/*.js"
],
"internalConsoleOptions": "openOnSessionStart"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment