Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2017-10-18 05:30:36 +0300
committerMike Greiling <mike@pixelcog.com>2017-10-18 05:30:36 +0300
commit5e63566bf1fde65de8894f3fd588846853d139d9 (patch)
tree6e45a94edb47f731915d9b073b15bee22c5012f2 /app/assets/javascripts/test_utils/index.js
parent585a2ab577bc5714817f643ce4afd72ae8d832c3 (diff)
add InputHelper rspec helper to simulate non-BMP character input
Diffstat (limited to 'app/assets/javascripts/test_utils/index.js')
-rw-r--r--app/assets/javascripts/test_utils/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/assets/javascripts/test_utils/index.js b/app/assets/javascripts/test_utils/index.js
index 8875590f0f2..a55a338eea8 100644
--- a/app/assets/javascripts/test_utils/index.js
+++ b/app/assets/javascripts/test_utils/index.js
@@ -1,6 +1,8 @@
import 'core-js/es6/map';
import 'core-js/es6/set';
import simulateDrag from './simulate_drag';
+import simulateInput from './simulate_input';
// Export to global space for rspec to use
window.simulateDrag = simulateDrag;
+window.simulateInput = simulateInput;