diff --git a/.gitignore b/.gitignore index a2787f973..056a7536a 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,3 @@ /target out/ out.json - -integration-tests/testdata/* diff --git a/ForkTest.sol b/ForkTest.sol deleted file mode 100644 index f9e625c22..000000000 --- a/ForkTest.sol +++ /dev/null @@ -1,10 +0,0 @@ -// SPDX-License-Identifier: UNLICENSED -pragma solidity =0.8.1; - -// cargo r --bin dapp test --contracts './ForkTest.sol' --fork-url --fork-block-number 13292582 -contract ForkTest { - // only passes at block https://etherscan.io/block/13292582 - function testBal() public { - require(address(0x1aD91ee08f21bE3dE0BA2ba6918E714dA6B45836).balance == 5535797434271969477039); - } -} diff --git a/Makefile b/Makefile deleted file mode 100644 index 6a004ab80..000000000 --- a/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -.PHONY: format lint test ready - -format: - cargo +nightly fmt - -lint: - cargo +nightly clippy --all-features -- -D warnings - -test: - cargo check - cargo test - cargo doc --open - -ready: format lint test