Commit 6d9b56d2 authored by Kyle Wiebers's avatar Kyle Wiebers

Stop leaking Grape::Endpoint mocks for GitHub and BitBucket

parent 2b12d49b
......@@ -198,6 +198,10 @@ RSpec.describe API::ImportBitbucketServer do
end
end
after do
Grape::Endpoint.before_each nil
end
it 'raises a connection error' do
post api("/import/bitbucket_server", user), params: {
bitbucket_server_url: base_uri,
......
......@@ -26,6 +26,10 @@ RSpec.describe API::ImportGithub do
end
end
after do
Grape::Endpoint.before_each nil
end
it 'rejects requests when Github Importer is disabled' do
stub_application_setting(import_sources: nil)
......
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