Files
JavaScript/Conversions/test/LitersToUSGallons.test.js
2022-10-31 22:07:48 +05:30

6 lines
172 B
JavaScript

import litersToUSGallons from '../LitersToUSGallons'
test('Convert 50 liters to US gallons', () => {
expect(parseFloat(litersToUSGallons(50).toFixed(2))).toBe(13.21)
})