diff --git a/.vscode/launch.json b/.vscode/launch.json index 35f7a0142b..42d052285d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,11 +5,23 @@ "version": "0.2.0", "configurations": [ { + "name": "Main Process", + "type": "node", + "request": "launch", + "cwd": "${workspaceFolder}", + "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", + "windows": { + "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd" + }, + "args" : ["."], + "outputCapture": "std" + }, + { + "name": "Integration Tests", "type": "node", "request": "launch", - "name": "Integration tests", "console": "externalTerminal", "runtimeArgs": ["${workspaceRoot}/node_modules/.bin/jest", "--runInBand", "integration"], - } + }, ] }