roundDecimal.test.js 311 B

12345678910
  1. import roundDecimal from '../../src/utils/roundDecimal';
  2. describe('roundDecimal', () => {
  3. it('rounding method to limit the number of decimal digits', () => {
  4. expect(roundDecimal(1.139, 2)).toBe(1.14);
  5. expect(roundDecimal(1.13929, 3)).toBe(1.139);
  6. expect(roundDecimal(1.13929)).toBe(1);
  7. });
  8. });