import { shallowMount } from '@vue/test-utils'; import DiscussionFilterNote from '~/notes/components/discussion_filter_note.vue'; import eventHub from '~/notes/event_hub'; describe('DiscussionFilterNote component', () => { let wrapper; const createComponent = () => { wrapper = shallowMount(DiscussionFilterNote); }; beforeEach(() => { createComponent(); }); afterEach(() => { wrapper.destroy(); wrapper = null; }); it('timelineContent renders a string containing instruction for switching feed type', () => { expect(wrapper.find({ ref: 'timelineContent' }).html()).toBe( "
You're only seeing other activity in the feed. To add a comment, switch to one of the following options.
", ); }); it('emits `dropdownSelect` event with 0 parameter on clicking Show all activity button', () => { jest.spyOn(eventHub, '$emit').mockImplementation(() => {}); wrapper.find({ ref: 'showAllActivity' }).vm.$emit('click'); expect(eventHub.$emit).toHaveBeenCalledWith('dropdownSelect', 0); }); it('emits `dropdownSelect` event with 1 parameter on clicking Show comments only button', () => { jest.spyOn(eventHub, '$emit').mockImplementation(() => {}); wrapper.find({ ref: 'showComments' }).vm.$emit('click'); expect(eventHub.$emit).toHaveBeenCalledWith('dropdownSelect', 1); }); });