diff options
author | Clement Ho <clemmakesapps@gmail.com> | 2017-03-02 22:56:59 +0000 |
---|---|---|
committer | Clement Ho <clemmakesapps@gmail.com> | 2017-03-02 22:56:59 +0000 |
commit | b01a78dc8a8401adfaad6abce7c564992e34659e (patch) | |
tree | f554dfe5d1de52092217c18a9ece9d84e0dc616b /spec/javascripts | |
parent | 1ca2f3798a6bd8c64fe4ee0bbcb6bb5e7b3419e8 (diff) | |
parent | 7abdc24c7e3bd07f2f22bee521750b353402f4e9 (diff) | |
download | gitlab-ce-b01a78dc8a8401adfaad6abce7c564992e34659e.tar.gz |
Merge branch '27978-improve-task-list-ux' into 'master'
Only add a newline in Markdown Editor if the current line is not empty
Closes #27978
See merge request !9455
Diffstat (limited to 'spec/javascripts')
-rw-r--r-- | spec/javascripts/lib/utils/text_utility_spec.js.es6 | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/spec/javascripts/lib/utils/text_utility_spec.js.es6 b/spec/javascripts/lib/utils/text_utility_spec.js.es6 index 06b69b8ac17..4200e943121 100644 --- a/spec/javascripts/lib/utils/text_utility_spec.js.es6 +++ b/spec/javascripts/lib/utils/text_utility_spec.js.es6 @@ -46,5 +46,65 @@ require('~/lib/utils/text_utility'); expect(gl.text.highCountTrim(45)).toBe(45); }); }); + + describe('gl.text.insertText', () => { + let textArea; + + beforeAll(() => { + textArea = document.createElement('textarea'); + document.querySelector('body').appendChild(textArea); + }); + + afterAll(() => { + textArea.parentNode.removeChild(textArea); + }); + + describe('without selection', () => { + it('inserts the tag on an empty line', () => { + const initialValue = ''; + + textArea.value = initialValue; + textArea.selectionStart = 0; + textArea.selectionEnd = 0; + + gl.text.insertText(textArea, textArea.value, '*', null, '', false); + + expect(textArea.value).toEqual(`${initialValue}* `); + }); + + it('inserts the tag on a new line if the current one is not empty', () => { + const initialValue = 'some text'; + + textArea.value = initialValue; + textArea.setSelectionRange(initialValue.length, initialValue.length); + + gl.text.insertText(textArea, textArea.value, '*', null, '', false); + + expect(textArea.value).toEqual(`${initialValue}\n* `); + }); + + it('inserts the tag on the same line if the current line only contains spaces', () => { + const initialValue = ' '; + + textArea.value = initialValue; + textArea.setSelectionRange(initialValue.length, initialValue.length); + + gl.text.insertText(textArea, textArea.value, '*', null, '', false); + + expect(textArea.value).toEqual(`${initialValue}* `); + }); + + it('inserts the tag on the same line if the current line only contains tabs', () => { + const initialValue = '\t\t\t'; + + textArea.value = initialValue; + textArea.setSelectionRange(initialValue.length, initialValue.length); + + gl.text.insertText(textArea, textArea.value, '*', null, '', false); + + expect(textArea.value).toEqual(`${initialValue}* `); + }); + }); + }); }); })(); |