summaryrefslogtreecommitdiff
path: root/spec/frontend/alert_management/components/system_notes/alert_management_system_note_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/alert_management/components/system_notes/alert_management_system_note_spec.js')
-rw-r--r--spec/frontend/alert_management/components/system_notes/alert_management_system_note_spec.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/spec/frontend/alert_management/components/system_notes/alert_management_system_note_spec.js b/spec/frontend/alert_management/components/system_notes/alert_management_system_note_spec.js
new file mode 100644
index 00000000000..8dd663e55d9
--- /dev/null
+++ b/spec/frontend/alert_management/components/system_notes/alert_management_system_note_spec.js
@@ -0,0 +1,38 @@
+import { shallowMount } from '@vue/test-utils';
+import SystemNote from '~/alert_management/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();
+ }
+ });
+
+ describe('System notes', () => {
+ beforeEach(() => {
+ mountComponent({});
+ });
+
+ it('renders the correct system note', () => {
+ const noteId = wrapper.find('.note-wrapper').attributes('id');
+ const iconRoute = wrapper.find('use').attributes('href');
+
+ expect(noteId).toBe('note_1628');
+ expect(iconRoute.includes('user')).toBe(true);
+ });
+ });
+});