diff --git a/README.md b/README.md index 536da6b..b38a980 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Mento Governance Tests -This repo contains tests to verify the Mento Protocol governance setup. +This repo contains fork tests to verify the Mento Protocol governance setup. ## Getting Started @@ -14,9 +14,12 @@ cd governance-tests # Install dependencies with pnpm pnpm install -# Build the contracts, generate ts types & run typescript compiler -pnpm build +# Run the tests against celo +pnpm test # Run the tests against alfajores pnpm test:alfajores + +# Run the tests against baklava +pnpm test:baklava ``` diff --git a/package.json b/package.json index 0e4af17..19b0183 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,6 @@ "test": "NETWORK=celo pnpm exec hardhat test", "test:alfajores": "NETWORK=alfajores pnpm exec hardhat test", "test:baklava": "NETWORK=baklava pnpm exec hardhat test", - "build": "NETWORK=alfajores hardhat compile && pnpm tsc", "lint": "pnpm run prettier:check && pnpm run eslint:check", "prettier:check": "prettier --config \"./.prettierrc.json\" --check \"**/*.ts\"", "prettier": "prettier --config \"./.prettierrc.json\" --write \"**/*.ts\"",