2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-12 23:55:03 +00:00
2022-04-06 10:36:06 -04:00

11 lines
189 B
Makefile

.PHONY: test
test:
go test -race -run=^Test -v
.PHONY: cover
cover:
go test -coverprofile=coverage.out -covermode=atomic
.PHONY: coverhtml
coverhtml:
go tool cover -html=coverage.out