summaryrefslogtreecommitdiff
path: root/spec/frontend/notes/components/note_actions/reply_button_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/notes/components/note_actions/reply_button_spec.js')
-rw-r--r--spec/frontend/notes/components/note_actions/reply_button_spec.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/spec/frontend/notes/components/note_actions/reply_button_spec.js b/spec/frontend/notes/components/note_actions/reply_button_spec.js
new file mode 100644
index 00000000000..720ab10b270
--- /dev/null
+++ b/spec/frontend/notes/components/note_actions/reply_button_spec.js
@@ -0,0 +1,29 @@
+import Vuex from 'vuex';
+import { createLocalVue, mount } from '@vue/test-utils';
+import ReplyButton from '~/notes/components/note_actions/reply_button.vue';
+
+const localVue = createLocalVue();
+localVue.use(Vuex);
+
+describe('ReplyButton', () => {
+ let wrapper;
+
+ beforeEach(() => {
+ wrapper = mount(localVue.extend(ReplyButton), {
+ localVue,
+ });
+ });
+
+ afterEach(() => {
+ wrapper.destroy();
+ });
+
+ it('emits startReplying on click', () => {
+ const button = wrapper.find({ ref: 'button' });
+
+ button.trigger('click');
+
+ expect(wrapper.emitted().startReplying).toBeTruthy();
+ expect(wrapper.emitted().startReplying.length).toBe(1);
+ });
+});