class_spec_helper.js.es6 260 字节
Newer Older
1 2 3 4 5 6 7
class ClassSpecHelper {
  static itShouldBeAStaticMethod(base, method) {
    return it('should be a static method', () => {
      expect(Object.prototype.hasOwnProperty.call(base, method)).toBeTruthy();
    });
  }
}
8 9

window.ClassSpecHelper = ClassSpecHelper;