diff --git a/.gitignore b/.gitignore index 6cdcfcfe4..2a52def47 100644 --- a/.gitignore +++ b/.gitignore @@ -514,7 +514,6 @@ _book ############################################################################### .nyc_output -.vscode fyn-lock.yaml package-lock.json yarn.lock diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..1873ff0f6 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,32 @@ +{ + // 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": "attach", + "name": "Attach to Remote 127.0.0.1:9229", + "address": "127.0.0.1", + "port": 9229, + "localRoot": "${workspaceFolder}", + "remoteRoot": "${workspaceFolder}" + }, + { + "type": "node", + "request": "launch", + "name": "electrode-react-webapp Mocha Tests", + "program": "${workspaceFolder}/packages/electrode-react-webapp/node_modules/mocha/bin/_mocha", + "args": [ + "-u", + "tdd", + "--timeout", + "999999", + "--colors", + "${workspaceFolder}/packages/electrode-react-webapp/test/spec" + ], + "internalConsoleOptions": "openOnSessionStart" + } + ] +}