Remove mentions of runtests-browser in CONTRIBUTING.md

The gulp tasks were removed in #30054, but the contributing
guidelines weren't updated accordingly.
This commit is contained in:
Tim van der Lippe 2020-05-19 12:06:09 +01:00 committed by GitHub
parent 611dd22b9a
commit e72e01d9ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -139,19 +139,6 @@ gulp runtests --tests=2dArrays
## Debugging the tests
To debug the tests, invoke the `runtests-browser` task from gulp.
You will probably only want to debug one test at a time:
```Shell
gulp runtests-browser --tests=2dArrays
```
You can specify which browser to use for debugging. Currently, Chrome and IE are supported:
```Shell
gulp runtests-browser --tests=2dArrays --browser=chrome
```
You can debug with VS Code or Node instead with `gulp runtests --inspect=true`:
```Shell