-
Notifications
You must be signed in to change notification settings - Fork 152
Add Steps at Rust Test Setup #1123
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
base: development
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -9,6 +9,59 @@ title: Test setup | |||||
|
|
||||||
| [comment]: # (mx-context-auto) | ||||||
|
|
||||||
| If you haven't yet, run the build command for your smart contract while in the contract directory `your-contract/`, that contains all the contract's directories. | ||||||
|
|
||||||
| ```bash | ||||||
| sc-meta all build | ||||||
| ``` | ||||||
|
|
||||||
| ### Creating test file | ||||||
|
||||||
| ### Creating test file | |
| ### Creating Test File |
Copilot
AI
Jun 30, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The sc-config.toml snippet is TOML, so using toml instead of rust would improve syntax highlighting and clarity.
| ```rust title=sc-config.toml | |
| ```toml title=sc-config.toml |
Copilot
AI
Jun 30, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] This code block should specify a language (e.g., ```bash) for consistent formatting of CLI commands.
| ``` | |
| ```bash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] Consider rephrasing "If you haven't yet" to "If you haven't already" for smoother readability.