Skip to content

Commit

Permalink
Add a comment to the README about Rails controller tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-kephart committed Jun 7, 2022
1 parent 4385c37 commit 6fb7560
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ MaybeLater.config do |config|
config.max_threads = 5

# If set to true, will invoke the after_reply tasks even if the server doesn't
# provide an array of rack.after_reply array
# provide a rack.after_reply array.
# One reason to do this is if you are using Rails controller tests
# (with no webserver) rather than system tests.
# config.invoke_even_if_server_is_unsupported = Rails.env.test?
config.invoke_even_if_server_is_unsupported = false
end
```
Expand Down

0 comments on commit 6fb7560

Please sign in to comment.