### Install JavaScript Project Dependencies with pnpm Source: https://github.com/aptos-labs/aptos-indexer-processors-v2/blob/main/scripts/README.md This command installs all required project dependencies for JavaScript scripts using the pnpm package manager. It is a prerequisite for running any of the project's JavaScript-based functionalities. ```Shell pnpm install ``` -------------------------------- ### Run Rust SDK Tests Source: https://github.com/aptos-labs/aptos-indexer-processors-v2/blob/main/integration-tests/README.md Executes the Rust SDK tests for the project. This command requires Docker to be running in the environment for the tests to execute successfully. ```Rust cargo test sdk_tests ``` -------------------------------- ### Generate Rust DB Expected Output Source: https://github.com/aptos-labs/aptos-indexer-processors-v2/blob/main/integration-tests/README.md Runs the Rust SDK tests with additional flags to generate and capture expected database output. The `--nocapture` flag ensures that the output is displayed, and `generate` likely triggers a specific test mode for output generation. ```Rust cargo test sdk_tests -- --nocapture generate ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.