summaryrefslogtreecommitdiff
path: root/spec/frontend/__helpers__/class_spec_helper.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/__helpers__/class_spec_helper.js')
-rw-r--r--spec/frontend/__helpers__/class_spec_helper.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/spec/frontend/__helpers__/class_spec_helper.js b/spec/frontend/__helpers__/class_spec_helper.js
deleted file mode 100644
index b26f087f0c5..00000000000
--- a/spec/frontend/__helpers__/class_spec_helper.js
+++ /dev/null
@@ -1,10 +0,0 @@
-// eslint-disable-next-line jest/no-export
-export default class ClassSpecHelper {
- static itShouldBeAStaticMethod(base, method) {
- return it('should be a static method', () => {
- expect(Object.prototype.hasOwnProperty.call(base, method)).toBeTruthy();
- });
- }
-}
-
-window.ClassSpecHelper = ClassSpecHelper;