about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSerial <69764315+Serial-ATA@users.noreply.github.com>2022-06-29 22:42:58 -0400
committerSerial <69764315+Serial-ATA@users.noreply.github.com>2022-06-29 22:42:58 -0400
commit131770d22b982998c179c1407111cf24ad12c809 (patch)
treed7c0b1763825a770a928e731c818ac306a67c4ea
parentd42af68e0362ef7a43a9a3d0e216a7d83b291e20 (diff)
downloadrust-131770d22b982998c179c1407111cf24ad12c809.tar.gz
rust-131770d22b982998c179c1407111cf24ad12c809.zip
Add `dev dogfood` to the book
-rw-r--r--book/src/development/basics.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/book/src/development/basics.md b/book/src/development/basics.md
index 78c429ea013..0acd9ce8c7f 100644
--- a/book/src/development/basics.md
+++ b/book/src/development/basics.md
@@ -59,7 +59,7 @@ cargo uitest
 # only run UI tests starting with `test_`
 TESTNAME="test_" cargo uitest
 # only run dogfood tests
-cargo test --test dogfood
+cargo dev dogfood
 ```
 
 If the output of a [UI test] differs from the expected output, you can update
@@ -95,6 +95,8 @@ cargo dev new_lint
 cargo dev setup git-hook
 # (experimental) Setup Clippy to work with IntelliJ-Rust
 cargo dev setup intellij
+# runs the `dogfood` tests
+cargo dev dogfood
 ```
 
 More about intellij command usage and reasons