Last active
April 13, 2018 14:37
-
-
Save ARTUR-ZH/8f4c3148820c33cf6ac5f856586cbaba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // 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