Skip to content

Commit

Permalink
chore(scripts): fix jest fuzz test command
Browse files Browse the repository at this point in the history
  • Loading branch information
sheerlox committed Oct 23, 2023
1 parent 0943e02 commit 7e0f7c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down

0 comments on commit 7e0f7c0

Please sign in to comment.