Commit 163730f0 authored by Matija Čupić's avatar Matija Čupić

Redirect to settings page on invalid update

parent a89e8149
...@@ -19,7 +19,7 @@ module Projects ...@@ -19,7 +19,7 @@ module Projects
redirect_to project_settings_ci_cd_path(@project) redirect_to project_settings_ci_cd_path(@project)
else else
render 'show' redirect_to project_settings_ci_cd_path(@project), alert: result[:message]
end end
end end
end end
......
...@@ -191,6 +191,15 @@ describe Projects::Settings::CiCdController do ...@@ -191,6 +191,15 @@ describe Projects::Settings::CiCdController do
expect(project.build_timeout).to eq(5400) expect(project.build_timeout).to eq(5400)
end end
end end
context 'when build_timeout_human_readable is invalid' do
let(:params) { { build_timeout_human_readable: '5m' } }
it 'set specified timeout' do
expect(subject).to set_flash[:alert]
expect(response).to redirect_to(namespace_project_settings_ci_cd_path)
end
end
end end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment