test("should return todays day by default for getDay()", async () => {
            const formatter = new DateFormatter();
            const today = new Date();

            expect(formatter.getDay()).toBe(today.getDate().toString());