From b72530b48a36a556343e1b9124a2382f330bc534 Mon Sep 17 00:00:00 2001 From: Damian Krzeminski Date: Sun, 26 Jan 2025 14:44:02 -0700 Subject: [PATCH] add test-cov target --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c420e8a..d3786b5 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,11 @@ lint: test: node --test \ + $(TEST_OPTS) \ --require ./test/replay/index.js -.PHONY: check lint test +test-cov: TEST_OPTS := --experimental-test-coverage +test-cov: test + +.PHONY: check lint test test-cov +