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