From b28732990e4f87b911a10d8d4de28f80821133da Mon Sep 17 00:00:00 2001 From: Pierre Cavin Date: Mon, 23 Oct 2023 16:30:12 +0200 Subject: [PATCH] chore(scripts): fix fuzz test jest command --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f87dfef5..96b9abad 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "lint:fix": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write", "test": "jest --coverage", "test:watch": "jest --watch --coverage", - "test:fuzz": "jest --testRegex='(\\.|/)fuzz\\.ts$' --coverage=false --testTimeout=120000", + "test:fuzz": "jest --testMatch='**/*.fuzz.ts' --coverage=false --testTimeout=120000", "prepare": "husky install", "release": "semantic-release" },