summaryrefslogtreecommitdiff
path: root/spec/javascripts/helpers/class_spec_helper.js.es6
blob: 92a20687ec5974e91011dac46ae88e2ee93e8de8 (plain)
1
2
3
4
5
6
7
8
9
/* eslint-disable no-unused-vars */

class ClassSpecHelper {
  static itShouldBeAStaticMethod(base, method) {
    return it('should be a static method', () => {
      expect(Object.prototype.hasOwnProperty.call(base, method)).toBeTruthy();
    });
  }
}