From 6aa5899a378f037283a23d8505fe9278b70d9b5a Mon Sep 17 00:00:00 2001 From: Quint Daenen Date: Sun, 18 Aug 2024 12:13:15 +0200 Subject: [PATCH] Fix typo. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 842ac93..105be8a 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,10 @@ test-registry: REGISTRY_TEST_ENABLE=true go test -v -cover ./clients/registry/... test-ledger: - REGISTRY_TEST_ENABLE=true go test -v -cover ./clients/ledger/... + LEDGER_TEST_ENABLE=true go test -v -cover ./clients/ledger/... + +test-all: + REGISTRY_TEST_ENABLE=true LEDGER_TEST_ENABLE=true go test -v -cover ./... check-moc: find ic -type f -name '*.mo' -print0 | xargs -0 $(shell dfx cache show)/moc --check