You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To setup VS Code for breakpoint debugging in your Worker tests, you can create a `.vscode/launch.json` file that contains the following configuration:
49
+
To setup VS Code for breakpoint debugging in your Worker tests, create a `.vscode/launch.json` file that contains the following configuration:
50
50
51
51
```json
52
52
{
@@ -80,4 +80,4 @@ To setup VS Code for breakpoint debugging in your Worker tests, you can create a
80
80
}
81
81
```
82
82
83
-
You will find the **Debug Workers tests**option at the top of the **Run & Debug** panel. This will open inspector with Vitest and attach a debugger to the Workers runtime. You can then add breakpoints to your test files and start debugging.
83
+
Select **Debug Workers tests** at the top of the **Run & Debug** panel to open inspector with Vitest and attach a debugger to the Workers runtime. Then you can add breakpoints to your test files and start debugging.
0 commit comments