debian-mirror-gitlab/spec/javascripts/vue_shared/components/notes/placeholder_system_note_spec.js
2018-03-27 19:54:05 +05:30

25 lines
757 B
JavaScript

import Vue from 'vue';
import placeholderSystemNote from '~/vue_shared/components/notes/placeholder_system_note.vue';
import mountComponent from 'spec/helpers/vue_mount_component_helper';
describe('placeholder system note component', () => {
let PlaceholderSystemNote;
let vm;
beforeEach(() => {
PlaceholderSystemNote = Vue.extend(placeholderSystemNote);
});
afterEach(() => {
vm.$destroy();
});
it('should render system note placeholder with plain text', () => {
vm = mountComponent(PlaceholderSystemNote, {
note: { body: 'This is a placeholder' },
});
expect(vm.$el.tagName).toEqual('LI');
expect(vm.$el.querySelector('.timeline-content em').textContent.trim()).toEqual('This is a placeholder');
});
});