diff --git a/README.md b/README.md index fd9408f704..eedeb76d60 100644 --- a/README.md +++ b/README.md @@ -139,19 +139,40 @@ zksync dockerhub-push ``` - Running the database tests: - + ```sh zksync db-tests ``` - Running the integration test: + ```sh zksync server # Has to be run in the 1st terminal zksync prover # Has to be run in the 2nd terminal zksync integration-simple # Has to be run in the 3rd terminal ``` -- Running the benchmarks: +- Running the full integration tests (similar to `integration-simple`, but performs different full exits) + + ```sh + zksync server # Has to be run in the 1st terminal + zksync prover # Has to be run in the 2nd terminal + zksync integration-full-exit # Has to be run in the 3rd terminal + ``` +- Running the circuit tests: + + ```sh + zksync circuit-tests + ``` + +- Running the prover tests: + + ```sh + zksync prover-tests + ``` + +- Running the benchmarks: + ```sh f cargo bench ```