import { formatPercent } from '@/shared/formatters'; describe('formatters.ts', () => { it('Format percent correctly', () => { expect(formatPercent(0.5)).toEqual('50.000%'); }); });