We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91b104f commit 6414f28Copy full SHA for 6414f28
docs/Troubleshooting.md
@@ -94,6 +94,28 @@ following configuration:
94
}
95
```
96
97
+or the following for Windows:
98
+
99
+```json
100
+{
101
+ "version": "0.2.0",
102
+ "configurations": [
103
+ {
104
+ "name": "Debug Jest Tests",
105
+ "type": "node",
106
+ "request": "launch",
107
+ "runtimeArgs": [
108
+ "--inspect-brk",
109
+ "${workspaceRoot}/node_modules/jest/bin/jest.js",
110
+ "--runInBand"
111
+ ],
112
+ "console": "integratedTerminal",
113
+ "internalConsoleOptions": "neverOpen"
114
+ }
115
+ ]
116
+}
117
+```
118
119
If you are using Facebook's
120
[`create-react-app`](https://github.com/facebookincubator/create-react-app), you
121
can debug your Jest tests with the following configuration:
0 commit comments