Sha256: 06f31990ec3d1147e1cf805453e81d172eeacd8168a1eaf921b6b2b0860402ac
Contents?: true
Size: 404 Bytes
Versions: 10
Compression:
Stored size: 404 Bytes
Contents
# frozen_string_literal: true require "webmock/rspec" RSpec.configure do |config| config.before(:all, type: :request) do WebMock.allow_net_connect! end config.before(:all, type: :system) do WebMock.allow_net_connect! end config.after(:all, type: :request) do selenium_requests = %r{/((__.+__)|(hub/session.*))$} WebMock.allow_net_connect! allow: selenium_requests end end
Version data entries
10 entries across 10 versions & 1 rubygems