Foundry
Learn how to test using Foundry for ZKsync.
Last updated
Learn how to test using Foundry for ZKsync.
Last updated
For instructions on how to install foundry-zksync
please refer to the Foundry page.
foundry-zksync
, a fork of Foundry, provides developers with a tailored testing framework designed specifically for ZKsync environments. Utilizing forge test --zksync
, you can execute your smart contract tests efficiently. Tests are written in Solidity, and the framework is designed to recognize any contract function prefixed with test
as a test case. By convention, tests are typically stored within the test/
directory and have a .t.sol
extension.
For more detailed documentation related to Foundry testing please refer to the official upstream .
We support cheatcodes in the test code because it is run on the EVM. We do not support them on contracts that the test creates/invokes because they run on the zkEVM. For example, creating a contract that within itself calls vm.assume
is not supported, but using that call at the root level of the test is.
Tests are structured as Solidity contracts, inheriting from the Forge Standard Library's Test
contract for enhanced functionality, which includes basic assertions and logging:
Key Concepts
setUp
: An optional function that runs before each test, used for initializing test conditions.
test
: Prefix for functions that are recognized as tests. These functions must either pass or revert to indicate success or failure, respectively.
testFail
: A prefix for test functions expected to revert. If such a function does not revert, the test is considered failed.
To initiate your tests, use the forge test --zksync
command with the --zksync
flag, or incorporate vm.zkVm(true)
within your tests. This command automatically locates and executes tests across your source directory.
Here's an example of executing tests in a standard project setup:
You can run specific tests by filtering based on the contract or test names:
This command will execute only the tests within CounterTest
that include test_Increment
in their name.
Similarly, you can use --match-path
to run tests in files that match a specific glob pattern:
Inverse filters are available through --no-match-contract
, --no-match-test
, and --no-match-path
flags.
To automatically re-run tests upon any file changes, use the forge test --watch --run-all --zksync
command.