From cb0abeeedbdb975b9619453c3686507c5ba2fafc Mon Sep 17 00:00:00 2001 From: Prem Chaitanya Prathi Date: Mon, 6 Nov 2023 19:29:01 +0530 Subject: [PATCH] chore: enable REST and RPC unit tests --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e68348b17..71b8ef85a 100644 --- a/Makefile +++ b/Makefile @@ -80,7 +80,7 @@ test-with-race: ${GOBIN} test -race -timeout 300s ./waku/... test: - ${GOBIN} test -timeout 300s ./waku/... -coverprofile=${GO_TEST_OUTFILE}.tmp -coverpkg ./... + ${GOBIN} test -timeout 300s ./waku/... ./cmd/waku/server/... -coverprofile=${GO_TEST_OUTFILE}.tmp -coverpkg ./... cat ${GO_TEST_OUTFILE}.tmp | grep -v ".pb.go" > ${GO_TEST_OUTFILE} ${GOBIN} tool cover -html=${GO_TEST_OUTFILE} -o ${GO_HTML_COV}