Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sentry_utils_spec.js « runner « ci « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f17cc43ac5a8e783030638c78cae849173bdf7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import * as Sentry from '@sentry/browser';
import { captureException } from '~/ci/runner/sentry_utils';

jest.mock('@sentry/browser');

describe('~/ci/runner/sentry_utils', () => {
  let mockSetTag;

  beforeEach(() => {
    mockSetTag = jest.fn();

    Sentry.withScope.mockImplementation((fn) => {
      const scope = { setTag: mockSetTag };
      fn(scope);
    });
  });

  describe('captureException', () => {
    const mockError = new Error('Something went wrong!');

    it('error is reported to sentry', () => {
      captureException({ error: mockError });

      expect(Sentry.withScope).toHaveBeenCalled();
      expect(Sentry.captureException).toHaveBeenCalledWith(mockError);
    });

    it('error is reported to sentry with a component name', () => {
      const mockComponentName = 'MyComponent';

      captureException({ error: mockError, component: mockComponentName });

      expect(Sentry.withScope).toHaveBeenCalled();
      expect(Sentry.captureException).toHaveBeenCalledWith(mockError);

      expect(mockSetTag).toHaveBeenCalledWith('vue_component', mockComponentName);
    });
  });
});