mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 12:20:20 +01:00
8 lines
244 B
TypeScript
8 lines
244 B
TypeScript
import { formatToDate } from '@/utils/dates';
|
|
|
|
test('formatToDate: Expected to be able to format a date', () => {
|
|
const date = new Date(Date.UTC(2012, 11, 20, 3, 0, 0));
|
|
|
|
expect(formatToDate(date)).toBe('Wednesday, December 19, 2012');
|
|
});
|