We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e173954 commit ee9d0e4Copy full SHA for ee9d0e4
tests/README.md
@@ -154,6 +154,19 @@ yarn validate:all:flow
154
155
### Debugging E2E JS Tests (VSCode)
156
157
+Navigate to your .vscode/launch.json.
158
+
159
+Ensure the following exists as a debugging option.
160
161
+```js
162
+{
163
+ "name": "Attach to Process",
164
+ "type": "node",
165
+ "request": "attach",
166
+ "port": 9229
167
+ }
168
+```
169
170
1. Add a breakpoint in the JS file where you will need to debug.
171
2. Select the debug icon under 'NPM Scripts' when selecting one of the following scripts...
172
0 commit comments