export const toHaveLongerThanMatcher: jasmine.CustomMatcherFactory = () => {
  return {
    compare(value: unknown, propPath: string, other: string | any[]) {
      const pass = isLongerThan(other, getIn(propPath.split('.'), value));
      const message = pass