Update CONTRIBUTING.md

Fixes #146.
This commit is contained in:
Andrey Lushnikov 2017-07-27 11:28:35 -07:00
parent 480547955c
commit cfc6a6ab38
2 changed files with 53 additions and 23 deletions

View File

@ -24,42 +24,72 @@ information on using pull requests.
## Code Style ## Code Style
The coding style is fully defined in [.eslintrc](https://github.com/GoogleChrome/puppeteer/blob/master/.eslintrc.js). - coding style is fully defined in [.eslintrc](https://github.com/GoogleChrome/puppeteer/blob/master/.eslintrc.js). Please make sure to run `npm run lint` before submitting PR
Please make sure to run `npm lint` before submitting PR. - code should be annotated with [closure annotations](https://github.com/google/closure-compiler/wiki/Annotating-JavaScript-for-the-Closure-Compiler)
- comments should be generally avoided. If the code would not be understood without comments, consider re-writing the code to make it self-explanatory
We use JSDoc along with closure annotations. Annotations are encouraged for ## Documentation
all contributions.
## Testing All public API should have a descriptive entry in the [docs/api.md](https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md). There's a [documentation linter](https://github.com/GoogleChrome/puppeteer/tree/master/utils/doclint) that:
- makes sure documentation is aligned with the codebase
- generates up-to-date table-of-contents
All new features should be accompanied by tests. Puppeteer tests are located in [test/test.js](https://github.com/GoogleChrome/puppeteer/blob/master/test/test.js) To run the linter, use
```
npm run doc
```
## Dependencies
For all dependencies (both installation and development):
- **Do not add** a dependency if the desired functionality is easily implementable in scope of the project
- if adding a dependency, it should be well-maintained and trustworthy
For installation dependencies:
- **do not add** installation dependency unless it's critical to project success
## Tests
- every feature should be accompanied by a test
- every public api event/method should be accompanied by a test
- tests should be *hermetic*. They should not require internet connection or depend on external services.
- tests should work on all three platforms: Mac, Linux and Win. This is especially important for screenshot tests.
Puppeteer tests are located in [test/test.js](https://github.com/GoogleChrome/puppeteer/blob/master/test/test.js)
and are written using [Jasmine](https://jasmine.github.io/) testing framework. and are written using [Jasmine](https://jasmine.github.io/) testing framework.
There are also phantomjs tests located under [third_party/phantomjs/test](https://github.com/GoogleChrome/puppeteer/tree/master/third_party/phantomjs). These - To run all tests:
are used to test `phantom_shim`.
To run puppeteer tests, use:
``` ```
npm run unit npm run unit
``` ```
- To filter tests by name:
To run all tests, including lints:
``` ```
npm test npm run unit -- --filter=waitFor
``` ```
- To run a specific test, substitute the `it` with `fit` (mnemonic rule: '*focus it*'):
To debug unit tests: ```js
...
// Using "fit" to run specific test
fit('should work', SX(function() {
await response = page.navigate(EMPTY_PAGE);
expect(response.ok).toBe(true);
}))
```
- To run tests in non-headless mode:
```
HEADLESS=false npm run unit
```
- To debug a test, "focus" a test first and then run
``` ```
npm run debug-unit npm run debug-unit
``` ```
To run unit tests in non-headless mode: There are also phantomjs tests located under [third_party/phantomjs/test](https://github.com/GoogleChrome/puppeteer/tree/master/third_party/phantomjs). These
``` are used to test `phantom_shim`.
HEADLESS=false npm run unit
```
## DEBUG module
Puppeteer uses [debug](https://github.com/visionmedia/debug) module to expose some of it's inner guts under the `puppeteer` namespace. ## Debugging
Puppeteer uses [DEBUG](https://github.com/visionmedia/debug) module to expose some of it's inner guts under the `puppeteer` namespace.
Try putting the following script in the `script.js` and running it via `DEBUG=* node script.js`: Try putting the following script in the `script.js` and running it via `DEBUG=* node script.js`:
```js ```js

View File

@ -56,9 +56,9 @@ A few notes:
[API documentation](docs/api.md) is a work in progress. [API documentation](docs/api.md) is a work in progress.
## Contributing ## Contributing to Puppeteer
Check out our [contributing guide](https://github.com/GoogleChrome/puppeteer/blob/master/CONTRIBUTING.md) Check out [contributing guide](https://github.com/GoogleChrome/puppeteer/blob/master/CONTRIBUTING.md) to get an overview of puppeteer development.
# FAQ # FAQ