export const toBeDateOnDayOfMonthMatcher: jasmine.CustomMatcherFactory = () => {
  return {
    compare(value: unknown, dayOfMonth: number) {
      const pass = isDateOnDayOfMonth(dayOfMonth, value);
      const message = pass