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-01-06 21:46:56 +0300
committerMike Greiling <mike@pixelcog.com>2017-01-10 21:30:41 +0300
commiteb1bbe73d06dbb9419607c0882f2d6da7fe4428c (patch)
tree3945ff92961c7c663213ded2fb5e9a602da51569 /spec/javascripts/graphs
parent0e4aaa06d3a83f66a90a6f084efc8742a4221d5f (diff)
fix spec_helper missing/broken references
Diffstat (limited to 'spec/javascripts/graphs')
-rw-r--r--spec/javascripts/graphs/stat_graph_contributors_graph_spec.js1
-rw-r--r--spec/javascripts/graphs/stat_graph_contributors_util_spec.js1
-rw-r--r--spec/javascripts/graphs/stat_graph_spec.js1
3 files changed, 3 insertions, 0 deletions
diff --git a/spec/javascripts/graphs/stat_graph_contributors_graph_spec.js b/spec/javascripts/graphs/stat_graph_contributors_graph_spec.js
index a914eda90bb..b4d278dfe88 100644
--- a/spec/javascripts/graphs/stat_graph_contributors_graph_spec.js
+++ b/spec/javascripts/graphs/stat_graph_contributors_graph_spec.js
@@ -3,6 +3,7 @@
/* global ContributorsGraph */
/* global ContributorsMasterGraph */
+require('../spec_helper');
require('graphs/stat_graph_contributors_graph');
describe("ContributorsGraph", function () {
diff --git a/spec/javascripts/graphs/stat_graph_contributors_util_spec.js b/spec/javascripts/graphs/stat_graph_contributors_util_spec.js
index 4f82e1c46db..8323fcff02d 100644
--- a/spec/javascripts/graphs/stat_graph_contributors_util_spec.js
+++ b/spec/javascripts/graphs/stat_graph_contributors_util_spec.js
@@ -1,6 +1,7 @@
/* eslint-disable quotes, padded-blocks, no-var, camelcase, object-curly-spacing, semi, indent, object-property-newline, comma-dangle, comma-spacing, spaced-comment, max-len, key-spacing, vars-on-top, quote-props, no-multi-spaces */
/* global ContributorsStatGraphUtil */
+require('../spec_helper');
require('graphs/stat_graph_contributors_util');
describe("ContributorsStatGraphUtil", function () {
diff --git a/spec/javascripts/graphs/stat_graph_spec.js b/spec/javascripts/graphs/stat_graph_spec.js
index a017f35831d..66c8c16a40f 100644
--- a/spec/javascripts/graphs/stat_graph_spec.js
+++ b/spec/javascripts/graphs/stat_graph_spec.js
@@ -1,6 +1,7 @@
/* eslint-disable quotes, padded-blocks, semi */
/* global StatGraph */
+require('../spec_helper');
require('graphs/stat_graph');
describe("StatGraph", function () {