Asserts that the subject is the same date as another (ignoring time).
Example
expect( newDate('2023-01-01T10:00:00'), 'to be the same date as', newDate('2023-01-01T15:30:00'), );// passes expect( newDate('2023-01-01'), 'to be the same date as', newDate('2023-01-02'), );// fails
Asserts that the subject is the same date as another (ignoring time).