-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
/
Copy pathDecimalIsolate.test.js
44 lines (37 loc) · 1.3 KB
/
DecimalIsolate.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { decimalIsolate } from '../DecimalIsolate'
const invalidInputs = [
{ input: NaN, description: 'NaN' },
{ input: null, description: 'null' },
{ input: undefined, description: 'undefined' },
{ input: 'a string', description: 'a string' },
{ input: { a: 54.34 }, description: 'an object' },
{
input: ['OneDotTwoThree', 4.56, 7.89],
description: 'an array with invalid first element'
}
]
describe('DecimalIsolate', () => {
it('should isolate the decimal part of a positive number', () => {
expect(decimalIsolate(12.34)).toBe(0.34)
})
it('should isolate the decimal part of a negative number', () => {
expect(decimalIsolate(-456.789)).toBe(0.789)
})
it('should return 0 when the number is a whole number', () => {
expect(decimalIsolate(100)).toBe(0)
})
it('should isolate the decimal part of a number string', () => {
expect(decimalIsolate('12.34')).toBe(0.34)
})
it('should isolate the decimal part of the first element of an array if it is convertible to a number', () => {
expect(decimalIsolate([98.76, { a: 76.45 }])).toBe(0.76)
})
describe('Invalid Inputs', () => {
it.each(invalidInputs)(
'should return 0 for invalid input when input is $description',
({ input }) => {
expect(decimalIsolate(input)).toBe(0)
}
)
})
})