Skip to content

Commit

Permalink
docs: add docs on using the new testing helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Nov 24, 2018
1 parent d0bdf61 commit 06c4602
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,27 @@ When changing the API documentation, here are some rules to keep in mind.
For changes to the website ([electronforge.io](https://v6.electronforge.io)), please file
issues/pull requests at this repository in the "docs" folder.

## Running the Tests

The Electron Forge repository has a lot of tests some mof which take a decent
amount of time to run, if you only want to run the fast tests or just the tests
for a specific package we've provided some helpers to make it easy for you
to do so.

```bash
# Test everything (fast, slow, all packages)
yarn test

# Test just the fast things
yarn test --fast

# Test just the things in the webpack package
yarn test --match=webpack

# Test just the fast things in the core package
yarn test --match=core --fast
```

## Filing Pull Requests

Here are some things to keep in mind as you file pull requests to fix bugs, add new features, etc.:
Expand Down

0 comments on commit 06c4602

Please sign in to comment.