Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ use GitHub pull requests for this purpose. Consult
[GitHub Help](https://help.github.com/articles/about-pull-requests/) for more
information on using pull requests.

## Testing

All pull requests should have an associated test to ensure foward compatibility.

To run an individual test, you can run a command such as the following:

```
npm run test -- -g 'loading function'
```

## Community Guidelines

This project follows [Google's Open Source Community
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"watch": "npm run compile -- --watch",
"prepare": "npm run compile",
"pretest": "npm run compile"
},
Expand Down