summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_shared/alert_details/system_notes/alert_management_system_note_spec.js
blob: a5a9fb5573745c495fcbc819d80923fef8e6eb5c (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
40
import { GlIcon } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import SystemNote from '~/vue_shared/alert_details/components/system_notes/system_note.vue';
import mockAlerts from '../mocks/alerts.json';

const mockAlert = mockAlerts[1];

describe('Alert Details System Note', () => {
  let wrapper;

  function mountComponent({ stubs = {} } = {}) {
    wrapper = shallowMount(SystemNote, {
      propsData: {
        note: { ...mockAlert.notes.nodes[0] },
      },
      stubs,
    });
  }

  afterEach(() => {
    if (wrapper) {
      wrapper.destroy();
      wrapper = null;
    }
  });

  describe('System notes', () => {
    beforeEach(() => {
      mountComponent({});
    });

    it('renders the correct system note', () => {
      const noteId = wrapper.find('.note-wrapper').attributes('id');
      const iconName = wrapper.find(GlIcon).attributes('name');

      expect(noteId).toBe('note_1628');
      expect(iconName).toBe(mockAlert.notes.nodes[0].systemNoteIconName);
    });
  });
});