explicitly add Accept: */* HTTP header back to test

This commit is contained in:
Mike Greiling 2017-11-02 13:54:36 -05:00
parent b2932eb576
commit 082b595448
No known key found for this signature in database
GPG Key ID: 0303DF507FA67596
1 changed files with 3 additions and 1 deletions

View File

@ -10,7 +10,9 @@ feature 'Diffs URL', :js do
it 'renders the notes' do
create :note_on_merge_request, project: project, noteable: merge_request, note: 'Rebasing with master'
visit diffs_project_merge_request_path(project, merge_request)
inspect_requests(inject_headers: { 'Accept' => '*/*' }) do
visit diffs_project_merge_request_path(project, merge_request)
end
# Load notes and diff through AJAX
expect(page).to have_css('.note-text', visible: false, text: 'Rebasing with master')