We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00da957 commit e37d07cCopy full SHA for e37d07c
basics/counter/steel/README.md
@@ -10,10 +10,16 @@ cargo build-sbf
10
```
11
## Tests
12
13
-To run the test suit, use the Solana toolchain:
+This project includes both:
14
+- Rust tests: [`program/tests`](/program/tests) directory.
15
+- Node.js tests using [Bankrun](https://kevinheavey.github.io/solana-bankrun/): [`tests`](/tests) directory.
16
17
```sh
-cargo test-sbf
-```
18
+# rust tests
19
+cargo test-sbf
20
-The tests can be found in the [`program/tests`](/program/tests) directory.
21
+# node tests
22
+pnpm build-and-test # this will also build the program
23
+#or
24
+pnpm test # if you have already built the program
25
+```
0 commit comments