Skip to content
Snippets Groups Projects
class_spec_helper.js.es6 295 B
Newer Older
  • Learn to ignore specific revisions
  • class ClassSpecHelper {
      static itShouldBeAStaticMethod(base, method) {
        return it('should be a static method', () => {
          expect(Object.prototype.hasOwnProperty.call(base, method)).toBeTruthy();
        });
      }
    }
    
    
    window.ClassSpecHelper = ClassSpecHelper;
    
    
    module.exports = ClassSpecHelper;