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