2022-11-12 11:49:28 -08:00
|
|
|
const {convertToCelsius, convertToFahrenheit} = require('./tempConversion')
|
2017-08-25 08:27:07 -07:00
|
|
|
|
2022-11-12 11:49:28 -08:00
|
|
|
describe('convertToCelsius', () => {
|
2021-03-02 18:13:24 -08:00
|
|
|
test('works', () => {
|
2023-06-19 16:36:59 -07:00
|
|
|
expect(convertToCelsius(32)).toEqual(0)
|
|
|
|
})
|
|
|
|
test('rounds to 1 decimal', () => {
|
|
|
|
expect(convertToCelsius(100)).toEqual(37.8)
|
|
|
|
})
|
|
|
|
test('works with negatives', () => {
|
|
|
|
expect(convertToCelsius(-100)).toEqual(-73.3)
|
|
|
|
})
|
|
|
|
})
|
2017-08-25 08:27:07 -07:00
|
|
|
|
2022-11-12 11:49:28 -08:00
|
|
|
describe('convertToFahrenheit', () => {
|
2023-06-19 16:36:59 -07:00
|
|
|
test('works', () => {
|
|
|
|
expect(convertToFahrenheit(0)).toEqual(32)
|
|
|
|
})
|
|
|
|
test('rounds to 1 decimal', () => {
|
|
|
|
expect(convertToFahrenheit(73.2)).toEqual(163.8)
|
|
|
|
})
|
|
|
|
test('works with negatives', () => {
|
|
|
|
expect(convertToFahrenheit(-10)).toEqual(14)
|
|
|
|
})
|
|
|
|
})
|