diff options
author | Mike Greiling <mike@pixelcog.com> | 2017-08-18 02:44:08 -0500 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2017-08-18 02:50:11 -0500 |
commit | 2f35a266e1616bc7dea93bdd5c6e50e212ab9ae8 (patch) | |
tree | df38d71dda4c45b5ddb5494f9a2c2bb0388d1b6f /spec/javascripts | |
parent | e289b8cccb4ad5b7feb7253b6af86bbe3b308614 (diff) | |
download | gitlab-ce-2f35a266e1616bc7dea93bdd5c6e50e212ab9ae8.tar.gz |
fix test failures in text_utility_spec.js on Chrome 60
Diffstat (limited to 'spec/javascripts')
-rw-r--r-- | spec/javascripts/lib/utils/text_utility_spec.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/javascripts/lib/utils/text_utility_spec.js b/spec/javascripts/lib/utils/text_utility_spec.js index ca1b1b7cc3c..f1a975ba962 100644 --- a/spec/javascripts/lib/utils/text_utility_spec.js +++ b/spec/javascripts/lib/utils/text_utility_spec.js @@ -52,6 +52,7 @@ describe('text_utility', () => { beforeAll(() => { textArea = document.createElement('textarea'); document.querySelector('body').appendChild(textArea); + textArea.focus(); }); afterAll(() => { |