summaryrefslogtreecommitdiff
path: root/spec/javascripts/lib
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2017-08-18 02:44:08 -0500
committerMike Greiling <mike@pixelcog.com>2017-08-18 02:50:11 -0500
commit2f35a266e1616bc7dea93bdd5c6e50e212ab9ae8 (patch)
treedf38d71dda4c45b5ddb5494f9a2c2bb0388d1b6f /spec/javascripts/lib
parente289b8cccb4ad5b7feb7253b6af86bbe3b308614 (diff)
downloadgitlab-ce-2f35a266e1616bc7dea93bdd5c6e50e212ab9ae8.tar.gz
fix test failures in text_utility_spec.js on Chrome 60
Diffstat (limited to 'spec/javascripts/lib')
-rw-r--r--spec/javascripts/lib/utils/text_utility_spec.js1
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(() => {