Skip to content

Instantly share code, notes, and snippets.

@bbangert
Created September 29, 2019 21:31
Show Gist options
  • Save bbangert/90b1af3b9e3113ec54f3dd338f113686 to your computer and use it in GitHub Desktop.
Save bbangert/90b1af3b9e3113ec54f3dd338f113686 to your computer and use it in GitHub Desktop.
auth-server launch
{
// 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