summaryrefslogtreecommitdiff
path: root/spec/frontend/issue_show/components/fields/description_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/issue_show/components/fields/description_spec.js')
-rw-r--r--spec/frontend/issue_show/components/fields/description_spec.js70
1 files changed, 0 insertions, 70 deletions
diff --git a/spec/frontend/issue_show/components/fields/description_spec.js b/spec/frontend/issue_show/components/fields/description_spec.js
deleted file mode 100644
index a50be30cf4c..00000000000
--- a/spec/frontend/issue_show/components/fields/description_spec.js
+++ /dev/null
@@ -1,70 +0,0 @@
-import { shallowMount } from '@vue/test-utils';
-import DescriptionField from '~/issue_show/components/fields/description.vue';
-import eventHub from '~/issue_show/event_hub';
-import MarkdownField from '~/vue_shared/components/markdown/field.vue';
-
-describe('Description field component', () => {
- let wrapper;
-
- const findTextarea = () => wrapper.find({ ref: 'textarea' });
-
- const mountComponent = (description = 'test') =>
- shallowMount(DescriptionField, {
- attachTo: document.body,
- propsData: {
- markdownPreviewPath: '/',
- markdownDocsPath: '/',
- formState: {
- description,
- },
- },
- stubs: {
- MarkdownField,
- },
- });
-
- beforeEach(() => {
- jest.spyOn(eventHub, '$emit');
- });
-
- afterEach(() => {
- wrapper.destroy();
- wrapper = null;
- });
-
- it('renders markdown field with description', () => {
- wrapper = mountComponent();
-
- expect(findTextarea().element.value).toBe('test');
- });
-
- it('renders markdown field with a markdown description', () => {
- const markdown = '**test**';
-
- wrapper = mountComponent(markdown);
-
- expect(findTextarea().element.value).toBe(markdown);
- });
-
- it('focuses field when mounted', () => {
- wrapper = mountComponent();
-
- expect(document.activeElement).toBe(findTextarea().element);
- });
-
- it('triggers update with meta+enter', () => {
- wrapper = mountComponent();
-
- findTextarea().trigger('keydown.enter', { metaKey: true });
-
- expect(eventHub.$emit).toHaveBeenCalledWith('update.issuable');
- });
-
- it('triggers update with ctrl+enter', () => {
- wrapper = mountComponent();
-
- findTextarea().trigger('keydown.enter', { ctrlKey: true });
-
- expect(eventHub.$emit).toHaveBeenCalledWith('update.issuable');
- });
-});