symbolFormatters.test.ts 185 B

1234567
  1. import { currency } from './symbolFormatters';
  2. describe('Currency', () => {
  3. it('should format as usd', () => {
  4. expect(currency('$')(1532.82, 1, -1)).toEqual('$1.53K');
  5. });
  6. });