From f7a5db7fcedd3ee0dec47cda2b5a9c7a7f7db3ff Mon Sep 17 00:00:00 2001 From: Jonathan Sweemer Date: Tue, 4 Nov 2025 20:53:14 +0900 Subject: [PATCH] Clarify usage for native tests --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a26a2974d..f26c126fb 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ This repo contains Solana onchain programs (referred to as 'Smart Contracts' in Each folder includes examples for one or more of the following: - `anchor` - Written using [Anchor](https://www.anchor-lang.com/), the most popular framework for Solana Development, which uses Rust. Use `anchor build && anchor deploy` to build & deploy the program. Run `anchor run test` to test it. -- `native` - Written using Solana's native Rust crates and vanilla Rust. Use `cicd.sh` to build & deploy the program. Run `yarn run test` to test it. +- `native` - Written using Solana's native Rust crates and vanilla Rust. Use `cicd.sh` to build & deploy the program. Use `yarn run test` to run the TypeScript tests and use `cargo build-sbf && cargo test` to run the Rust tests. **If a given example is missing, please send us a PR to add it!** Our aim is to have every example available in every option. We'd also love to see more programs involving staking, wrapped tokens, oracles, compression and VRF. Follow the [contributing guidelines](./CONTRIBUTING.md) to keep things consistent.