9 lines
275 B
JavaScript
9 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;
|