aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-01-15 07:57:16 -0500
committerTyler Schicke <tyler_schicke@brown.edu>2019-01-15 07:57:16 -0500
commit3de39e2608e62a278b9c8cc37b53333f0877fa59 (patch)
tree0843d7cc199b54f80517c987a9f9d0d47cbb883d /.vscode/launch.json
parente1ed82ff684877b56925016282a0e4d5bb4e1b4b (diff)
Have most of document stuff working
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json36
1 files changed, 35 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 18585849a..9a0a9afb4 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -12,6 +12,40 @@
"breakOnLoad": true,
"url": "http://localhost:1050",
"webRoot": "${workspaceFolder}"
- }
+ },
+ {
+ "type": "node",
+ "request": "launch",
+ "name": "Mocha Tests",
+ "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
+ "args": [
+ "-r",
+ "ts-node/register",
+ "--timeout",
+ "999999",
+ "--colors",
+ "${workspaceFolder}/test/**/*.ts"
+ ],
+ "console": "integratedTerminal",
+ "internalConsoleOptions": "openOnSessionStart",
+ "protocol": "inspector"
+ },
+ {
+ "type": "node",
+ "request": "launch",
+ "name": "Mocha Current File",
+ "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
+ "args": [
+ "-r",
+ "ts-node/register",
+ "--timeout",
+ "999999",
+ "--colors",
+ "${file}"
+ ],
+ "console": "integratedTerminal",
+ "internalConsoleOptions": "openOnSessionStart",
+ "protocol": "inspector"
+ },
]
} \ No newline at end of file