We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d798ec6 commit bd9b08cCopy full SHA for bd9b08c
CONTRIBUTING.md
@@ -137,3 +137,18 @@ go test firebase.google.com/go/...
137
```
138
139
This will execute both unit and integration test suites.
140
+
141
+### Test Coverage
142
143
+Coverage can be measured per package by passing the `-cover` flag to the test invocation:
144
145
+```bash
146
+go test -cover firebase.google.com/go/auth
147
+```
148
149
+To view the detailed coverage reports (per package):
150
151
152
+go test -cover -coverprofile=coverage.out firebase.google.com/go
153
+go tool cover -html=coverage.out
154
0 commit comments