33 lines
641 B
JavaScript
33 lines
641 B
JavaScript
import Vuex from 'vuex';
|
|
import { createLocalVue, mount } from '@vue/test-utils';
|
|
import ReplyButton from '~/notes/components/note_actions/reply_button.vue';
|
|
|
|
describe('ReplyButton', () => {
|
|
let wrapper;
|
|
|
|
beforeEach(() => {
|
|
const localVue = createLocalVue();
|
|
|
|
localVue.use(Vuex);
|
|
|
|
wrapper = mount(ReplyButton, {
|
|
sync: false,
|
|
localVue,
|
|
});
|
|
});
|
|
|
|
afterEach(() => {
|
|
wrapper.destroy();
|
|
});
|
|
|
|
it('emits startReplying on click', () => {
|
|
const button = wrapper.find({ ref: 'button' });
|
|
|
|
button.trigger('click');
|
|
|
|
expect(wrapper.emitted()).toEqual({
|
|
startReplying: [[]],
|
|
});
|
|
});
|
|
});
|