Remove render_template from remote interaction helper request spec (#33518)

This commit is contained in:
Matt Jankowski 2025-01-09 03:17:06 -05:00 committed by GitHub
parent f4b463ecb1
commit 4148b68430
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,7 +9,6 @@ RSpec.describe 'Remote Interaction Helper' do
expect(response) expect(response)
.to have_http_status(200) .to have_http_status(200)
.and render_template(:index, layout: 'helper_frame')
.and have_attributes( .and have_attributes(
headers: include( headers: include(
'X-Frame-Options' => 'SAMEORIGIN', 'X-Frame-Options' => 'SAMEORIGIN',
@ -17,6 +16,8 @@ RSpec.describe 'Remote Interaction Helper' do
'Content-Security-Policy' => expected_csp_headers 'Content-Security-Policy' => expected_csp_headers
) )
) )
expect(response.body)
.to match(/remote_interaction_helper/)
end end
end end