import { formatDay } from './formatDay';

const date = new Date(2022, 10, 21);

test('should return the formatted day', () => {
  expect(formatDay(date)).toEqual('21');
});
