about summary refs log tree commit diff
path: root/spec/rails_helper.rb
diff options
context:
space:
mode:
authorNaoki Kosaka <n.k@mail.yukimochi.net>2018-01-06 04:04:22 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-01-05 20:04:22 +0100
commit8d51ce429094d43a91d61c9cb0c0dc7b1e6bd2de (patch)
tree427e7d7b7cdc8283fa1f3d4dfcd34ef54ebd29b2 /spec/rails_helper.rb
parent06636c6eca636d7cacc3d743487b2a9618585c34 (diff)
Fix enforce HTTPS in production. (#6180)
Diffstat (limited to 'spec/rails_helper.rb')
-rw-r--r--spec/rails_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/rails_helper.rb b/spec/rails_helper.rb
index 4f7399505..67c6b9205 100644
--- a/spec/rails_helper.rb
+++ b/spec/rails_helper.rb
@@ -46,7 +46,7 @@ RSpec.configure do |config|
   config.include ActiveSupport::Testing::TimeHelpers
 
   config.before :each, type: :feature do
-    https = ENV['LOCAL_HTTPS'] == 'true'
+    https = Rails.env.production? || ENV['LOCAL_HTTPS'] == 'true'
     Capybara.app_host = "http#{https ? 's' : ''}://#{ENV.fetch('LOCAL_DOMAIN')}"
   end