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

26 lines
596 B
JavaScript
Raw Normal View History

2021-05-08 11:27:13 -07:00
const {ftoc, ctof} = require('./tempConversion')
2017-08-25 10:27:07 -05:00
describe('ftoc', function() {
it('works', function() {
expect(ftoc(32)).toEqual(0);
});
2021-05-08 11:25:04 -07:00
xit('rounds to 1 decimal', function() {
2017-08-25 10:27:07 -05:00
expect(ftoc(100)).toEqual(37.8);
});
2021-05-08 11:25:04 -07:00
xit('works with negatives', function() {
2017-08-25 10:27:07 -05:00
expect(ftoc(-100)).toEqual(-73.3);
});
});
describe('ctof', function() {
2021-05-08 11:25:04 -07:00
xit('works', function() {
2017-08-25 10:27:07 -05:00
expect(ctof(0)).toEqual(32);
});
2021-05-08 11:25:04 -07:00
xit('rounds to 1 decimal', function() {
2017-08-25 10:27:07 -05:00
expect(ctof(73.2)).toEqual(163.8);
});
2021-05-08 11:25:04 -07:00
xit('works with negatives', function() {
2017-08-25 10:27:07 -05:00
expect(ctof(-10)).toEqual(14);
});
});