From 4092ebacb28fb56944ca0cb7de2ba70600d77d4b Mon Sep 17 00:00:00 2001 From: Pedro Dias Date: Fri, 3 Jan 2025 22:41:43 +0000 Subject: [PATCH] launch --- .vscode/launch.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..2f68acf --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,22 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "args": [ + "--colors", + "${workspaceFolder}/test", + "-R", + "spec", + "--exit" + ], + "internalConsoleOptions": "openOnSessionStart", + "name": "Mocha Tests", + "program": "./node_modules/mocha/bin/mocha.js", + "request": "launch", + "skipFiles": [ + "/**" + ], + "type": "node" + } + ] +} \ No newline at end of file