Skip to content

Commit

Permalink
Compile before all test scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
msinkec committed Feb 14, 2024
1 parent a567773 commit 36c1650
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"pretest": "npm run compile",
"test": "npm run test:mocha",
"test:mocha": "cross-env NETWORK=local mocha -i -f 'Heavy'",
"test:all": "cross-env NETWORK=local mocha --no-timeouts",
"test:testnet": "cross-env NETWORK=testnet mocha -i -f 'Heavy' --no-timeouts",
"test:all": "npm run pretest && cross-env NETWORK=local mocha --no-timeouts",
"test:testnet": "npm run pretest && cross-env NETWORK=testnet mocha -i -f 'Heavy' --no-timeouts",
"lint": "eslint . --ext .js,.ts --fix && prettier --write --ignore-unknown \"**/*\"",
"lint-check": "eslint . --ext .js,.ts && prettier --check --ignore-unknown \"**/*\"",
"prepare": "husky install",
Expand Down

0 comments on commit 36c1650

Please sign in to comment.