Open jbowen93 opened 2 years ago
We should make sure there is a unit or integration test that simulates deploying a solidity contract.
First pass at integration test could be a bash script such as
forge init test-contract cd test-contract forge build # sed command to copy in a Storage contract forge create Storage # capture contract address cast call $ADDR "store(uint256)" "100" # validate response cast call $ADDR "retrieve()" # validate response
https://hardhat.org/guides/deploying.html
We should make sure there is a unit or integration test that simulates deploying a solidity contract.
First pass at integration test could be a bash script such as