Files
odin-javascript-exercises/07_tempConversion/tempConversion.spec.js
T

26 lines
588 B
JavaScript
Raw Normal View History

2018-08-07 11:23:28 +01:00
const {ftoc, ctof} = require('./tempConversion')
2017-08-25 10:27:07 -05:00
2021-03-03 15:13:24 +13:00
describe('ftoc', () => {
test('works', () => {
2017-08-25 10:27:07 -05:00
expect(ftoc(32)).toEqual(0);
});
2021-03-03 15:13:24 +13:00
test.skip('rounds to 1 decimal', () => {
2017-08-25 10:27:07 -05:00
expect(ftoc(100)).toEqual(37.8);
});
2021-03-03 15:13:24 +13:00
test.skip('works with negatives', () => {
2017-08-25 10:27:07 -05:00
expect(ftoc(-100)).toEqual(-73.3);
});
});
2021-03-03 15:13:24 +13:00
describe('ctof', () => {
test.skip('works', () => {
2017-08-25 10:27:07 -05:00
expect(ctof(0)).toEqual(32);
});
2021-03-03 15:13:24 +13:00
test.skip('rounds to 1 decimal', () => {
2017-08-25 10:27:07 -05:00
expect(ctof(73.2)).toEqual(163.8);
});
2021-03-03 15:13:24 +13:00
test.skip('works with negatives', () => {
2017-08-25 10:27:07 -05:00
expect(ctof(-10)).toEqual(14);
});
});