-
Notifications
You must be signed in to change notification settings - Fork 238
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
Add documentation for running the tests to the README. #183
Conversation
README.md
Outdated
To run the tests in this repo, run the following: | ||
|
||
``` | ||
cargo test --features mock-network |
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.
This should be cargo test --all --features mock-network
, to include all the unit tests from the sub-crates in this project
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.
Sorry about that, thank you for pointing out the correct command!
README.md
Outdated
To run the tests in this repo, run the following: | ||
|
||
``` | ||
cargo test --features mock-network |
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.
cargo test --features mock-network | |
cargo test --all --features mock-network |
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.
👼 trying out the new feature.
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.
Whoops, they didn't send me a notification for the suggested fix 😕 and I clobbered it...
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.
Oh that's an interesting new thing!
This adds the current test command to the README while we work on a better solution over in #168.