solana-cli
v2.1.7
Use the .env.example file to create a .env
file.
This is the bare minimum setup to run the recipes.
Note: The .env
file will be overwritten during test runs to save generated data allowing you to re-run recipes without re-generating data.
# Run all tests in an ingredient
cargo test -p setup_participants
# Run a specific test from an ingredient
cargo test -p setup_participants setup_basic_participant
# Run all recipes
cargo test -p test-runner
# Run a specific recipe
cargo test -p test-runner recipe::basic_transfer_recipe
# Show log output mid-test
cargo test -- --nocapture
# Show test execution time
cargo test -- --show-output