fix: update readme (#3501)

This commit is contained in:
Darshan K 2025-07-14 14:34:22 +05:30 committed by GitHub
parent 7123c5532c
commit a4f8b2bedd

View File

@ -110,11 +110,19 @@ source env.sh
``` ```
If everything went well, you should see your prompt suffixed with `[Nimbus env]$`. Now you can run `nim` commands as usual. If everything went well, you should see your prompt suffixed with `[Nimbus env]$`. Now you can run `nim` commands as usual.
### Waku Protocol Test Suite ### Test Suite
```bash ```bash
# Run all the Waku tests # Run all the Waku tests
make test make test
# Run a specific test file
make test <test_file_path>
# e.g. : make test tests/wakunode2/test_all.nim
# Run a specific test name from a specific test file
make test <test_file_path> <test_name>
# e.g. : make test tests/wakunode2/test_all.nim "node setup is successful with default configuration"
``` ```
### Building single test files ### Building single test files