export const toHaveDateInMonthMatcher: jasmine.CustomMatcherFactory = () => {
  return {
    compare(value: unknown, propPath: string, index: number) {
      const pass = isDateInMonth(index, getIn(propPath.split('.'), value));
      const message = pass