Remove a few HTTP status checks as these are not supported in Selenium

This commit is contained in:
Stan Hu 2017-08-12 23:01:24 -07:00
parent f64f06f651
commit 1ddfe8ca33
2 changed files with 0 additions and 2 deletions

View File

@ -198,7 +198,6 @@ feature 'Environment' do
end
it 'renders a correct environment folder' do
expect(page).to have_http_status(:ok)
expect(page).to have_content('Environments / staging-1.0')
end
end

View File

@ -515,7 +515,6 @@ describe 'Pipelines', :js do
let(:project) { create(:project, :public, :repository) }
it { expect(page).to have_content 'Build with confidence' }
it { expect(page).to have_http_status(:success) }
end
context 'when project is private' do