summaryrefslogtreecommitdiff
path: root/spec/javascripts/helpers/class_spec_helper.js.es6
diff options
context:
space:
mode:
Diffstat (limited to 'spec/javascripts/helpers/class_spec_helper.js.es6')
-rw-r--r--spec/javascripts/helpers/class_spec_helper.js.es64
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/javascripts/helpers/class_spec_helper.js.es6 b/spec/javascripts/helpers/class_spec_helper.js.es6
index 92a20687ec5..d3c37d39431 100644
--- a/spec/javascripts/helpers/class_spec_helper.js.es6
+++ b/spec/javascripts/helpers/class_spec_helper.js.es6
@@ -1,5 +1,3 @@
-/* eslint-disable no-unused-vars */
-
class ClassSpecHelper {
static itShouldBeAStaticMethod(base, method) {
return it('should be a static method', () => {
@@ -7,3 +5,5 @@ class ClassSpecHelper {
});
}
}
+
+window.ClassSpecHelper = ClassSpecHelper;