Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trivial fixes #586

Merged
merged 2 commits into from
Nov 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ Each concept has an accompanying program and test file. For example, the

**program -** `programs/architecture/src/concepts/sizes.rs`

**test -** `cd tests/sizes.ts`
**test -** `tests/sizes.ts`

Now that you've read about each of these concepts, feel free to jump into the
code to experiment a little. You can change existing values, try to break the
Expand All @@ -945,7 +945,8 @@ You can fork and/or clone
to get started. Before building and running the test suite, remember to update
the `lib.rs` and `Anchor.toml` with your local program ID.

You can run the entire test suite or add `.only` to the `describe` call in a
You can run the entire test suite or
[add `.only` to the `describe` call](https://mochajs.org/#exclusive-tests) in a
specific test file to only run that file's tests. Feel free to customize it and
make it your own.

Expand Down
Loading