import { describe, it, expect } from 'vitest'; import { formatDate } from '../format-date'; describe('formatDate', () => { it('обычная дата', () => { // 2025-01-15 00:00:00 UTC expect(formatDate(1736899200)).toBe('15.01.2025'); }); it('начало эпохи', () => { expect(formatDate(0)).toBe('01.01.1970'); }); it('с padding нулей', () => { // 2024-03-05 UTC expect(formatDate(1709596800)).toBe('05.03.2024'); }); });