2020-05-14 14:08:06 -04:00
|
|
|
// eslint-disable-next-line jest/no-export
|
2019-03-28 15:07:40 -04:00
|
|
|
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;
|