From fca7d0f253bddeb34f9b839ee8f53666d898bf26 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Wed, 2 Mar 2022 15:37:41 -0600 Subject: [PATCH] vscode: debug tests through craco Changing react-scripts to craco in the debug config was missed in 2342023. --- .vscode/launch.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 1ed621d3..5d020bdc 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -18,7 +18,7 @@ "name": "Debug Tests", "type": "node", "request": "launch", - "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/react-scripts", + "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/craco", "env": { "CI": "true" }, "args": ["test", "--runInBand", "--no-cache", "--env=./test/env.js"], "cwd": "${workspaceRoot}",