From e544f57ad117b8fc89ce0c3a09df13944561e28f Mon Sep 17 00:00:00 2001 From: Gregor MacLennan Date: Wed, 4 Sep 2024 09:46:18 +0100 Subject: [PATCH] fix: fix test script This was failing in Node v22 maybe because of a syntax change --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a5e1020..98685dd 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "lint": "npm-run-all --parallel lint:*", "prepack": "npm run build", "pretest": "npm run build", - "test": "c8 --100 --exclude 'dist/proto/*' node --test test", + "test": "c8 --100 --exclude 'dist/proto/*' node --test", "posttest": "c8 report --reporter=text-lcov > ./coverage/lcov.info", "prepare": "husky" },