diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2017-03-05 08:54:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-05 08:54:28 -0500 |
commit | 797ed5e61fc906eaa639c14cc063aacdd7f7c68c (patch) | |
tree | bea04e746a20c950514082bdfc19cd88cb86333d /guides | |
parent | 12038f6505cdbcdbea861c7ae5f272e918100e13 (diff) | |
parent | 4a77213eead0e33a8158e47525bad3d5e1996300 (diff) | |
download | rails-797ed5e61fc906eaa639c14cc063aacdd7f7c68c.tar.gz rails-797ed5e61fc906eaa639c14cc063aacdd7f7c68c.tar.bz2 rails-797ed5e61fc906eaa639c14cc063aacdd7f7c68c.zip |
Merge pull request #28286 from robin850/skip-system-tests-by-default
Avoid running system tests by default
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/testing.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index f7640d097f..3f53ccb242 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -730,6 +730,9 @@ Run the system tests. bin/rails test:system ``` +NOTE: By default, running `bin/rails test` won't run your system tests. +Make sure to run `bin/rails test:system` to actually run them. + #### Creating articles system test Now let's test the flow for creating a new article in our blog. |