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:
authorPaul Gascou-Vaillancourt <paul.gascvail@gmail.com>2019-05-30 03:20:59 +0300
committerPaul Gascou-Vaillancourt <paul.gascvail@gmail.com>2019-05-30 14:06:50 +0300
commit8faf0d9a14d98c98eae740e8adb065f6f880b98d (patch)
tree5425327303605f75ba7b50861a875692877431aa /app/assets/javascripts/test_utils/index.js
parent043488f575733ae1eedcf142439a24e8b1222848 (diff)
Upgrade core-js and add URL polyfill
- Upgraded core-js from v2.x to v3.1.3 - Updated core-js import statements - Enabled URL polyfill
Diffstat (limited to 'app/assets/javascripts/test_utils/index.js')
-rw-r--r--app/assets/javascripts/test_utils/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/test_utils/index.js b/app/assets/javascripts/test_utils/index.js
index a55a338eea8..1e75ee60671 100644
--- a/app/assets/javascripts/test_utils/index.js
+++ b/app/assets/javascripts/test_utils/index.js
@@ -1,5 +1,5 @@
-import 'core-js/es6/map';
-import 'core-js/es6/set';
+import 'core-js/es/map';
+import 'core-js/es/set';
import simulateDrag from './simulate_drag';
import simulateInput from './simulate_input';