diff options
| author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-01-15 07:57:16 -0500 |
|---|---|---|
| committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-01-15 07:57:16 -0500 |
| commit | 3de39e2608e62a278b9c8cc37b53333f0877fa59 (patch) | |
| tree | 0843d7cc199b54f80517c987a9f9d0d47cbb883d /.vscode/launch.json | |
| parent | e1ed82ff684877b56925016282a0e4d5bb4e1b4b (diff) | |
Have most of document stuff working
Diffstat (limited to '.vscode/launch.json')
| -rw-r--r-- | .vscode/launch.json | 36 |
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 |
