Skip to content

Commit

Permalink
add vscode launch task
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt-Esch committed Jul 28, 2021
1 parent e1e574d commit a7406ca
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// 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": "Debug Test",
"env": {
"ABLY_ENV": "sandbox",
},
"cwd": "${workspaceFolder}",
"runtimeExecutable": "node",
"runtimeArgs": ["--inspect-brk=9229", "node_modules/.bin/grunt", "test"],
"port": 9229
}
]
}

0 comments on commit a7406ca

Please sign in to comment.