diff options
author | Phil Hughes <me@iamphill.com> | 2017-11-21 10:45:23 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-11-21 10:45:23 +0000 |
commit | 15cb13ee87939a339631c217fcf42223af51b31e (patch) | |
tree | 080322db00ca0d3ec31d81d12f14b02c4e444bd6 /spec | |
parent | ea07773d81b82ca8d263e63b6ec245cfc2be282b (diff) | |
parent | 030de8b32889eae832d512f30079403e0da7f699 (diff) | |
download | gitlab-ce-15cb13ee87939a339631c217fcf42223af51b31e.tar.gz |
Merge branch '38869-milestone' into 'master'
Export code as ES6 modules
See merge request gitlab-org/gitlab-ce!15503
Diffstat (limited to 'spec')
-rw-r--r-- | spec/javascripts/new_branch_spec.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/spec/javascripts/new_branch_spec.js b/spec/javascripts/new_branch_spec.js index c57f44dae17..50a5e4ff056 100644 --- a/spec/javascripts/new_branch_spec.js +++ b/spec/javascripts/new_branch_spec.js @@ -1,7 +1,6 @@ /* eslint-disable space-before-function-paren, one-var, no-var, one-var-declaration-per-line, no-return-assign, quotes, max-len */ -/* global NewBranchForm */ -import '~/new_branch_form'; +import NewBranchForm from '~/new_branch_form'; (function() { describe('Branch', function() { |