summaryrefslogtreecommitdiff
path: root/spec/frontend/error_tracking/utils_spec.js
blob: a0d6f7f009dbbba3eb4a5c21b0c08a058b22caa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import * as errorTrackingUtils from '~/error_tracking/utils';

const externalUrl = 'https://sentry.io/organizations/test-sentry-nk/issues/1/?project=1';

describe('Error Tracking Events', () => {
  describe('trackClickErrorLinkToSentryOptions', () => {
    it('should return correct event options', () => {
      expect(errorTrackingUtils.trackClickErrorLinkToSentryOptions(externalUrl)).toEqual({
        category: 'Error Tracking',
        action: 'click_error_link_to_sentry',
        label: 'Error Link',
        property: externalUrl,
      });
    });
  });
});