odin-javascript-exercises/tempConversion/tempConversion.spec.js
Tatiana b2f2211321 Revert "Resolve merge conflicts"
This reverts commit 61338e0ca0, reversing
changes made to b9983073cc.
2021-05-08 11:27:13 -07:00

25 lines
596 B
JavaScript

const {ftoc, ctof} = require('./tempConversion')
describe('ftoc', function() {
it('works', function() {
expect(ftoc(32)).toEqual(0);
});
xit('rounds to 1 decimal', function() {
expect(ftoc(100)).toEqual(37.8);
});
xit('works with negatives', function() {
expect(ftoc(-100)).toEqual(-73.3);
});
});
describe('ctof', function() {
xit('works', function() {
expect(ctof(0)).toEqual(32);
});
xit('rounds to 1 decimal', function() {
expect(ctof(73.2)).toEqual(163.8);
});
xit('works with negatives', function() {
expect(ctof(-10)).toEqual(14);
});
});