Skip to content

Commit

Permalink
test: run yarn compile
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDZhon committed Apr 4, 2023
1 parent 7ef74da commit 3c4bb28
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
"test:forge": "forge test",
"test": "yarn run test:unit",
"test-sequential": "yarn run test:unit-sequential",
"test:unit": "hardhat test --parallel --network hardhat",
"test:unit-sequential": "hardhat test --network hardhat",
"test:gas": "REPORT_GAS=true hardhat test --network hardhat",
"test:unit": "yarn compile && hardhat test --parallel --network hardhat",
"test:unit-sequential": "yarn compile && hardhat test --network hardhat",
"test:gas": "yarn compile && REPORT_GAS=true hardhat test --network hardhat",
"test:coverage": "yarn compile && hardhat coverage --testfiles test",
"test:e2e": "npm run compile && ava -T 1000000 -v",
"test:e2e": "yarn compile && ava -T 1000000 -v",
"estimate-deposit-loop-gas": "yarn run test:unit ./estimate_deposit_loop_gas.js",
"compile": "hardhat compile && yarn extract-abi",
"clean": "hardhat clean",
Expand Down

0 comments on commit 3c4bb28

Please sign in to comment.