debian-mirror-gitlab/spec/frontend/helpers/class_spec_helper.js
2019-07-07 11:18:12 +05:30

10 lines
275 B
JavaScript

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;