summaryrefslogtreecommitdiff
path: root/spec/frontend/boards/components/board_new_issue_new_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/boards/components/board_new_issue_new_spec.js')
-rw-r--r--spec/frontend/boards/components/board_new_issue_new_spec.js115
1 files changed, 0 insertions, 115 deletions
diff --git a/spec/frontend/boards/components/board_new_issue_new_spec.js b/spec/frontend/boards/components/board_new_issue_new_spec.js
deleted file mode 100644
index ee1c4f31cf0..00000000000
--- a/spec/frontend/boards/components/board_new_issue_new_spec.js
+++ /dev/null
@@ -1,115 +0,0 @@
-import Vuex from 'vuex';
-import { shallowMount, createLocalVue } from '@vue/test-utils';
-import BoardNewIssue from '~/boards/components/board_new_issue_new.vue';
-
-import '~/boards/models/list';
-import { mockList } from '../mock_data';
-
-const localVue = createLocalVue();
-
-localVue.use(Vuex);
-
-describe('Issue boards new issue form', () => {
- let wrapper;
- let vm;
-
- const addListNewIssuesSpy = jest.fn();
-
- const findSubmitButton = () => wrapper.find({ ref: 'submitButton' });
- const findCancelButton = () => wrapper.find({ ref: 'cancelButton' });
- const findSubmitForm = () => wrapper.find({ ref: 'submitForm' });
-
- const submitIssue = () => {
- const dummySubmitEvent = {
- preventDefault() {},
- };
-
- return findSubmitForm().trigger('submit', dummySubmitEvent);
- };
-
- beforeEach(() => {
- const store = new Vuex.Store({
- state: {},
- actions: { addListNewIssue: addListNewIssuesSpy },
- getters: {},
- });
-
- wrapper = shallowMount(BoardNewIssue, {
- propsData: {
- disabled: false,
- list: mockList,
- },
- store,
- localVue,
- provide: {
- groupId: null,
- weightFeatureAvailable: false,
- boardWeight: null,
- },
- });
-
- vm = wrapper.vm;
-
- return vm.$nextTick();
- });
-
- afterEach(() => {
- wrapper.destroy();
- });
-
- it('calls submit if submit button is clicked', async () => {
- jest.spyOn(wrapper.vm, 'submit').mockImplementation();
- wrapper.setData({ title: 'Testing Title' });
-
- await vm.$nextTick();
- await submitIssue();
- expect(wrapper.vm.submit).toHaveBeenCalled();
- });
-
- it('disables submit button if title is empty', () => {
- expect(findSubmitButton().props().disabled).toBe(true);
- });
-
- it('enables submit button if title is not empty', async () => {
- wrapper.setData({ title: 'Testing Title' });
-
- await vm.$nextTick();
- expect(wrapper.find({ ref: 'input' }).element.value).toBe('Testing Title');
- expect(findSubmitButton().props().disabled).toBe(false);
- });
-
- it('clears title after clicking cancel', async () => {
- findCancelButton().trigger('click');
-
- await vm.$nextTick();
- expect(vm.title).toBe('');
- });
-
- describe('submit success', () => {
- it('creates new issue', async () => {
- wrapper.setData({ title: 'submit issue' });
-
- await vm.$nextTick();
- await submitIssue();
- expect(addListNewIssuesSpy).toHaveBeenCalled();
- });
-
- it('enables button after submit', async () => {
- jest.spyOn(wrapper.vm, 'submit').mockImplementation();
- wrapper.setData({ title: 'submit issue' });
-
- await vm.$nextTick();
- await submitIssue();
- expect(findSubmitButton().props().disabled).toBe(false);
- });
-
- it('clears title after submit', async () => {
- wrapper.setData({ title: 'submit issue' });
-
- await vm.$nextTick();
- await submitIssue();
- await vm.$nextTick();
- expect(vm.title).toBe('');
- });
- });
-});