From a56a3d1df5612a91d5babd66a834635a9914a15d Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Fri, 18 Oct 2024 20:08:09 +0200 Subject: [PATCH] Fixed vscode jest command --- .vscode/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index fd15c98..f392b05 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,5 +5,5 @@ "editor.smoothScrolling": true, "editor.defaultFormatter": "esbenp.prettier-vscode", - "jest.jestCommandLine": "node --no-warnings ./node_modules/.bin/jest -c jest.config.cjs --runInBand --silent" + "jest.jestCommandLine": "NODE_OPTIONS=\"--warnings\" pnpm jest -c jest.config.cjs --runInBand --silent" }