Skip to content

Commit

Permalink
Fix launch.json debugging config (#6484)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-mars authored and iansu committed Aug 8, 2019
1 parent efaee65 commit cb2c720
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docusaurus/docs/debugging-tests.md
Expand Up @@ -60,7 +60,9 @@ Use the following [`launch.json`](https://code.visualstudio.com/docs/editor/debu
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
"internalConsoleOptions": "neverOpen",
"env": { "CI": "true" },
"disableOptimisticBPs": true
}
]
}
Expand Down

0 comments on commit cb2c720

Please sign in to comment.