Skip to content

Commit

Permalink
docs: add docs on how to run tests (#88)
Browse files Browse the repository at this point in the history
Adds basic docs with instructions on how to run tests.
  • Loading branch information
grant committed Oct 25, 2021
1 parent 4104626 commit 91368ad
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,22 @@ 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 code changes must be tested before they are merged.

Run all unit tests with:

```commandline
go test -v ./...
```

Run an individual test by passing the name of the test to `go test`. Example:

```commandline
go test -v -run TestSplitResource/firebaseauth.googleapis.com ./...
```

## Community Guidelines

This project follows
Expand Down

0 comments on commit 91368ad

Please sign in to comment.