Add config file as an argument as it is now required when running the command (#126577)

This commit is contained in:
Giorgos Bamparopoulos 2022-03-01 15:36:26 +00:00 committed by GitHub
parent c90043da02
commit dc351ce4d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,10 @@ To make the [VSCode debugger](https://vscode.readthedocs.io/en/latest/editor/deb
"type": "node",
"name": "vscode-jest-tests",
"request": "launch",
"args": ["--runInBand"],
"args": [
"--runInBand",
"--config=${workspaceFolder}/jest.config.js"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",