Skip to content

Commit

Permalink
Update CONTRIBUTING.md
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov committed Jul 27, 2017
1 parent 4805479 commit cfc6a6a
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 23 deletions.
72 changes: 51 additions & 21 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,42 +24,72 @@ information on using pull requests.

## Code Style

The coding style is fully defined in [.eslintrc](https://github.com/GoogleChrome/puppeteer/blob/master/.eslintrc.js).
Please make sure to run `npm lint` before submitting PR.
- 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
- 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
all contributions.
## Documentation

## 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)
and are written using [Jasmine](https://jasmine.github.io/) testing framework.
To run the linter, use
```
npm run doc
```

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`.
## 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

To run puppeteer tests, use:
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.

- To run all tests:
```
npm run unit
```

To run all tests, including lints:
```
npm test
- To filter tests by name:
```

To debug unit tests:
npm run unit -- --filter=waitFor
```
npm run debug-unit
- To run a specific test, substitute the `it` with `fit` (mnemonic rule: '*focus it*'):
```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 unit tests in non-headless mode:
- 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
```

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`.


## 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`:

```js
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ A few notes:

[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

Expand Down

0 comments on commit cfc6a6a

Please sign in to comment.