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