Skip to content

Commit

Permalink
chore: add test to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
scmmishra committed Nov 16, 2023
1 parent e0b779d commit f80c61f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,17 @@ alias slickdev="<path-to-project>/bin/slick"
```

> Note, we use `slickdev` instead of `slick` to avoid conflicts with the global slick binary.
#### Testing

To run the tests, use the following command

```bash
go test ./... -coverprofile=coverage.out
```

This will also generate the coverage report, which can be viewed by running

```bash
go tool cover -html=coverage.out
```

0 comments on commit f80c61f

Please sign in to comment.