Enable hostname config for all system specs (#32109)

pull/2867/head
Matt Jankowski 2024-10-02 09:56:26 -04:00 committed by GitHub
parent f760899b04
commit b7bb850efd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

View File

@ -161,6 +161,11 @@ RSpec.configure do |config|
host! Rails.configuration.x.local_domain host! Rails.configuration.x.local_domain
end end
config.before :each, type: :system do
# Align with capybara config so that rails helpers called from rspec use matching host
host! 'localhost:3000'
end
config.after do config.after do
Rails.cache.clear Rails.cache.clear
redis.del(redis.keys) redis.del(redis.keys)

View File

@ -7,10 +7,7 @@ RSpec.describe 'Invites' do
let(:user) { Fabricate :user } let(:user) { Fabricate :user }
before do before { sign_in user }
host! 'localhost:3000' # TODO: Move into before for all system specs?
sign_in user
end
describe 'Viewing invites' do describe 'Viewing invites' do
it 'Lists existing user invites' do it 'Lists existing user invites' do