summaryrefslogtreecommitdiff
path: root/spec/javascripts/graphs
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2017-02-23 23:28:54 -0600
committerMike Greiling <mike@pixelcog.com>2017-02-24 00:20:59 -0600
commit2f09c23c1afd55e17ef6acb6c0ec23323e05b4f6 (patch)
tree2306f164cc78dd27b932ce4dab234e8744fe6a23 /spec/javascripts/graphs
parentc2497d8b35d77d8a14cf085534e028970468db72 (diff)
downloadgitlab-ce-2f09c23c1afd55e17ef6acb6c0ec23323e05b4f6.tar.gz
refactor stat_graph_contributors_util to es6 module syntax
Diffstat (limited to 'spec/javascripts/graphs')
-rw-r--r--spec/javascripts/graphs/stat_graph_contributors_util_spec.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/spec/javascripts/graphs/stat_graph_contributors_util_spec.js b/spec/javascripts/graphs/stat_graph_contributors_util_spec.js
index b15764abe8c..9b47ab62181 100644
--- a/spec/javascripts/graphs/stat_graph_contributors_util_spec.js
+++ b/spec/javascripts/graphs/stat_graph_contributors_util_spec.js
@@ -1,7 +1,6 @@
/* eslint-disable quotes, no-var, camelcase, object-property-newline, comma-dangle, max-len, vars-on-top, quote-props */
-/* global ContributorsStatGraphUtil */
-require('~/graphs/stat_graph_contributors_util');
+import ContributorsStatGraphUtil from '~/graphs/stat_graph_contributors_util';
describe("ContributorsStatGraphUtil", function () {
describe("#parse_log", function () {