summaryrefslogtreecommitdiff
path: root/spec/javascripts/helpers/class_spec_helper.js.es6
blob: d3c37d39431950cfd4d8531ba791a5afadaba9eb (plain)
1
2
3
4
5
6
7
8
9
class ClassSpecHelper {
  static itShouldBeAStaticMethod(base, method) {
    return it('should be a static method', () => {
      expect(Object.prototype.hasOwnProperty.call(base, method)).toBeTruthy();
    });
  }
}

window.ClassSpecHelper = ClassSpecHelper;