vscode: debug tests through craco

Changing react-scripts to craco in the debug config was missed in 2342023.
This commit is contained in:
David Lechner
2022-03-02 15:37:41 -06:00
parent a6f427351a
commit fca7d0f253
+1 -1
View File
@@ -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}",