Commit 27da119c authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab-ce master

parents 61ed0ba7 05fca5ff
...@@ -398,6 +398,8 @@ You can also use this push option in addition to the ...@@ -398,6 +398,8 @@ You can also use this push option in addition to the
### Add or remove labels using git push options ### Add or remove labels using git push options
> [Introduced](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/31831) in GitLab 12.3.
You can add or remove labels from merge requests using push options. You can add or remove labels from merge requests using push options.
For example, to add two labels to an existing merge request, use the For example, to add two labels to an existing merge request, use the
......
...@@ -83,6 +83,13 @@ describe RegistrationsController do ...@@ -83,6 +83,13 @@ describe RegistrationsController do
stub_application_setting(recaptcha_enabled: true) stub_application_setting(recaptcha_enabled: true)
end end
after do
# Avoid test ordering issue and ensure `verify_recaptcha` returns true
unless Recaptcha.configuration.skip_verify_env.include?('test')
Recaptcha.configuration.skip_verify_env << 'test'
end
end
it 'displays an error when the reCAPTCHA is not solved' do it 'displays an error when the reCAPTCHA is not solved' do
fail_recaptcha fail_recaptcha
...@@ -93,11 +100,6 @@ describe RegistrationsController do ...@@ -93,11 +100,6 @@ describe RegistrationsController do
end end
it 'redirects to the dashboard when the recaptcha is solved' do it 'redirects to the dashboard when the recaptcha is solved' do
# Avoid test ordering issue and ensure `verify_recaptcha` returns true
unless Recaptcha.configuration.skip_verify_env.include?('test')
Recaptcha.configuration.skip_verify_env << 'test'
end
post(:create, params: user_params) post(:create, params: user_params)
expect(flash[:notice]).to include 'Welcome! You have signed up successfully.' expect(flash[:notice]).to include 'Welcome! You have signed up successfully.'
......
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