From 37a86872db820f74ba522907f8bbfa267c767e60 Mon Sep 17 00:00:00 2001 From: Tom Ratcliffe Date: Mon, 22 Apr 2024 16:32:46 +0100 Subject: [PATCH] Remove port and add NODE_ENV to VSCode debug config --- .vscode/launch.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 99a3f849ca9..869d998655d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -53,7 +53,9 @@ "runtimeArgs": ["run", "jest", "--runInBand", "${file}"], "console": "integratedTerminal", "internalConsoleOptions": "neverOpen", - "port": 9229 + "env": { + "NODE_ENV": "test" + } }, { "name": "Debug Go test",