When creating an instance of an MockDate with i.e. "10/24/2023, 1:59:00 AM" it throws an error: AssertionError: Unhandled date format passed to MockDate constructor: 10/24/2023, 1:59:00 AM.
It occurs while running tests using the current version of the Mantine-Framework and the error is been thrown at this line: https://github.com/mantinedev/mantine/blob/master/packages/@mantine/dates/src/components/DateTimePicker/DateTimePicker.tsx#L157
I guess the origin of this string is toLocaleString.
When using this pattern in the actual Date-constructor in Chrome, Firefox or Node.js it doesn't throw an error.
console.log(new Date("10/24/2023, 1:59:00 AM"));
//2023-10-23T23:59:00.000Z