diff options
Diffstat (limited to 'spec/support/snowplow.rb')
-rw-r--r-- | spec/support/snowplow.rb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/spec/support/snowplow.rb b/spec/support/snowplow.rb index 58812b8f4e6..b67fa96fab8 100644 --- a/spec/support/snowplow.rb +++ b/spec/support/snowplow.rb @@ -1,22 +1,24 @@ # frozen_string_literal: true RSpec.configure do |config| + config.include SnowplowHelpers, :snowplow + config.before(:each, :snowplow) do # Using a high buffer size to not cause early flushes buffer_size = 100 # WebMock is set up to allow requests to `localhost` host = 'localhost' - allow(Gitlab::Tracking) + allow_any_instance_of(Gitlab::Tracking::Destinations::Snowplow) .to receive(:emitter) .and_return(SnowplowTracker::Emitter.new(host, buffer_size: buffer_size)) stub_application_setting(snowplow_enabled: true) - allow(Gitlab::Tracking).to receive(:event).and_call_original + allow(Gitlab::Tracking).to receive(:event).and_call_original # rubocop:disable RSpec/ExpectGitlabTracking end config.after(:each, :snowplow) do - Gitlab::Tracking.send(:snowplow).flush + Gitlab::Tracking.send(:snowplow).send(:tracker).flush end end |