├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── abis └── erc20.abi.json ├── contracts └── Lending.sol ├── hardhat.config.ts ├── package.json ├── scripts └── deploy.ts ├── test ├── shared │ ├── fixtures.ts │ ├── mocks.ts │ └── types.ts └── unit │ ├── Lending │ └── LendingShouldDeposit.spec.ts │ └── index.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejrakic/hardhat-testing/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejrakic/hardhat-testing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejrakic/hardhat-testing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejrakic/hardhat-testing/HEAD/README.md -------------------------------------------------------------------------------- /abis/erc20.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejrakic/hardhat-testing/HEAD/abis/erc20.abi.json -------------------------------------------------------------------------------- /contracts/Lending.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejrakic/hardhat-testing/HEAD/contracts/Lending.sol -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejrakic/hardhat-testing/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejrakic/hardhat-testing/HEAD/package.json -------------------------------------------------------------------------------- /scripts/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejrakic/hardhat-testing/HEAD/scripts/deploy.ts -------------------------------------------------------------------------------- /test/shared/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejrakic/hardhat-testing/HEAD/test/shared/fixtures.ts -------------------------------------------------------------------------------- /test/shared/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejrakic/hardhat-testing/HEAD/test/shared/mocks.ts -------------------------------------------------------------------------------- /test/shared/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejrakic/hardhat-testing/HEAD/test/shared/types.ts -------------------------------------------------------------------------------- /test/unit/Lending/LendingShouldDeposit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejrakic/hardhat-testing/HEAD/test/unit/Lending/LendingShouldDeposit.spec.ts -------------------------------------------------------------------------------- /test/unit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejrakic/hardhat-testing/HEAD/test/unit/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejrakic/hardhat-testing/HEAD/tsconfig.json --------------------------------------------------------------------------------