Created
September 29, 2019 21:31
-
-
Save bbangert/90b1af3b9e3113ec54f3dd338f113686 to your computer and use it in GitHub Desktop.
auth-server launch
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": "launch", | |
"name": "Mocha Local Tests", | |
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", | |
"args": [ | |
"-u", | |
"tdd", | |
"--timeout", | |
"999999", | |
"--colors", | |
"${workspaceFolder}/test/local" | |
], | |
"internalConsoleOptions": "openOnSessionStart", | |
"env": { | |
"NODE_ENV": "dev", | |
"VERIFIER_VERSION": "0", | |
"NO_COVERAGE": "1", | |
"CORS_ORIGIN": "http://foo,http://bar" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment