@aztec/cli-wallet
v4.4.0
Published
1) Start a local Ethereum node (Anvil) in one terminal:
Keywords
Readme
Aztec wallet Documentation
Run tests locally
- Start a local Ethereum node (Anvil) in one terminal:
anvil --host 127.0.0.1 --port 8545- In another terminal, start the Aztec local network from
yarn-project/aztec:
cd yarn-project/aztec
NODE_NO_WARNINGS=1 ETHEREUM_HOSTS=http://127.0.0.1:8545 node ./dest/bin/index.js start --local-network- Run the wallet tests from
yarn-project/cli-wallet/test:
cd yarn-project/cli-wallet/test
./test.sh --filter <partialnameoftest>Notes:
- Filter tests: Omit
--filterto run all tests, or pass part of a test filename to run a subset. - Docker mode: You can run tests using Docker by adding
--docker:
./test.sh --docker --filter <partialnameoftest>