From e153f532b4f561de2c1ec1a8622917cec60d493a Mon Sep 17 00:00:00 2001 From: arieger Date: Wed, 10 Oct 2018 11:11:25 +0200 Subject: [PATCH] added config for jest test debugging with vscode editor --- .vscode/launch.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..176494bc6 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Debug Jest Tests", + "type": "node", + "request": "launch", + "port": 9230, + "runtimeArgs": [ + "--inspect-brk=9230", + "${workspaceRoot}/node_modules/.bin/jest", + "--runInBand", + "--watch" + ], + "runtimeExecutable": null + } + ] +}