Skip to content

Commit

Permalink
add .vscode debug config
Browse files Browse the repository at this point in the history
  • Loading branch information
jchip committed Jul 31, 2018
1 parent 77ad661 commit de2d47e
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,6 @@ _book
###############################################################################

.nyc_output
.vscode
fyn-lock.yaml
package-lock.json
yarn.lock
Expand Down
32 changes: 32 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
// 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": "Attach to Remote 127.0.0.1:9229",
"address": "127.0.0.1",
"port": 9229,
"localRoot": "${workspaceFolder}",
"remoteRoot": "${workspaceFolder}"
},
{
"type": "node",
"request": "launch",
"name": "electrode-react-webapp Mocha Tests",
"program": "${workspaceFolder}/packages/electrode-react-webapp/node_modules/mocha/bin/_mocha",
"args": [
"-u",
"tdd",
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/packages/electrode-react-webapp/test/spec"
],
"internalConsoleOptions": "openOnSessionStart"
}
]
}

0 comments on commit de2d47e

Please sign in to comment.