Update tests for shifting ascent/descent from km/mi to m/ft
This commit is contained in:
parent
8c5e3cf2e4
commit
7d89dc8310
@ -30,16 +30,16 @@ describe('formatTooltipValue', () => {
|
||||
expectedResult: '30.00 km',
|
||||
},
|
||||
{
|
||||
description: 'returns 0.003 km if input is total ascent',
|
||||
inputDisplayedData: datasetKeys[4], // 'total_distance'
|
||||
description: 'returns 30 m if input is total ascent',
|
||||
inputDisplayedData: datasetKeys[4], // 'total_ascent'
|
||||
inputValue: 30,
|
||||
expectedResult: '0.03 km',
|
||||
expectedResult: '30 m',
|
||||
},
|
||||
{
|
||||
description: 'returns 0.003 km if input is total descent',
|
||||
inputDisplayedData: datasetKeys[5], // 'total_distance'
|
||||
description: 'returns 30 m if input is total descent',
|
||||
inputDisplayedData: datasetKeys[5], // 'total_descent'
|
||||
inputValue: 30,
|
||||
expectedResult: '0.03 km',
|
||||
expectedResult: '30 m',
|
||||
},
|
||||
]
|
||||
|
||||
@ -84,16 +84,16 @@ describe('formatTooltipValue after conversion to imperial units', () => {
|
||||
expectedResult: '30.00 mi',
|
||||
},
|
||||
{
|
||||
description: 'returns 0.03 mi if input is total ascent',
|
||||
inputDisplayedData: datasetKeys[4], // 'total_distance'
|
||||
description: 'returns 98.43 ft if input is total ascent',
|
||||
inputDisplayedData: datasetKeys[4], // 'total_ascent'
|
||||
inputValue: 30,
|
||||
expectedResult: '0.03 mi',
|
||||
expectedResult: '98.43 ft',
|
||||
},
|
||||
{
|
||||
description: 'returns 0.03 mi if input is total descent',
|
||||
inputDisplayedData: datasetKeys[5], // 'total_distance'
|
||||
description: 'returns 98.43 ft if input is total descent',
|
||||
inputDisplayedData: datasetKeys[5], // 'total_descent'
|
||||
inputValue: 30,
|
||||
expectedResult: '0.03 mi',
|
||||
expectedResult: '98.43 ft',
|
||||
},
|
||||
]
|
||||
|
||||
@ -138,16 +138,16 @@ describe('formatTooltipValue (formatWithUnits = false)', () => {
|
||||
expectedResult: '30.00 km',
|
||||
},
|
||||
{
|
||||
description: 'returns 0.003 km if input is total ascent',
|
||||
inputDisplayedData: datasetKeys[4], // 'total_distance'
|
||||
description: 'returns 30 m if input is total ascent',
|
||||
inputDisplayedData: datasetKeys[4], // 'total_ascent'
|
||||
inputValue: 30,
|
||||
expectedResult: '0.03 km',
|
||||
expectedResult: '30 m',
|
||||
},
|
||||
{
|
||||
description: 'returns 0.003 km if input is total descent',
|
||||
inputDisplayedData: datasetKeys[5], // 'total_distance'
|
||||
description: 'returns 30 m if input is total descent',
|
||||
inputDisplayedData: datasetKeys[5], // 'total_decent'
|
||||
inputValue: 30,
|
||||
expectedResult: '0.03 km',
|
||||
expectedResult: '30 m',
|
||||
},
|
||||
]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user