docs: Expand testing info in CONTRIBUTING.md (#4020)

Esse commit está contido em:
Kevin Litchfield
2017-02-02 11:19:01 -05:00
commit de Brandon Casey
commit 2da4e76ef0
+8 -2
Ver Arquivo
@@ -140,13 +140,17 @@ npm install
#### Running tests
To run the tests all you need to do is run
Tests can be run either from the shell or from the browser.
To run the tests from the shell, just run
```sh
npm test
```
This will build video.js locally and run the tests using [Karma](https://karma-runner.github.io/1.0/index.html) which runs our tests in actual browsers.
This will build video.js locally and run the test suite using [Karma](https://karma-runner.github.io/1.0/index.html), which runs our tests in actual browsers.
To run tests from the browser, first start a local server with `npm start` (this also watches for changes and rebuilds video.js and the test files as necessary). Then navigate to `http://localhost:9999/test`, and you'll see a page that displays the results of all the tests. To rerun the tests after making changes, just refresh the page. To run an individual test, click the "Rerun" link next to the test's title.
#### Building videojs
@@ -275,6 +279,8 @@ Tests attached to bug fixes should fail before the change and succeed with it.
npm test
```
See [Running tests](#running-tests) for more information.
#### Step 6: Push
```sh