Solution
This commit is contained in:
parent
e2298c6149
commit
4b246d1770
|
@ -1,9 +1,11 @@
|
||||||
const ftoc = function() {
|
const ftoc = function(fahrenheit) {
|
||||||
|
celsius = (fahrenheit - 32)*(5/9);
|
||||||
|
return Math.round(celsius* 10)/10;
|
||||||
}
|
}
|
||||||
|
|
||||||
const ctof = function() {
|
const ctof = function(celsius) {
|
||||||
|
fahrenheit = celsius * (9/5) + 32;
|
||||||
|
return Math.round(fahrenheit* 10)/10;
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
|
|
@ -4,22 +4,22 @@ describe('ftoc', function() {
|
||||||
it('works', function() {
|
it('works', function() {
|
||||||
expect(ftoc(32)).toEqual(0);
|
expect(ftoc(32)).toEqual(0);
|
||||||
});
|
});
|
||||||
xit('rounds to 1 decimal', function() {
|
it('rounds to 1 decimal', function() {
|
||||||
expect(ftoc(100)).toEqual(37.8);
|
expect(ftoc(100)).toEqual(37.8);
|
||||||
});
|
});
|
||||||
xit('works with negatives', function() {
|
it('works with negatives', function() {
|
||||||
expect(ftoc(-100)).toEqual(-73.3);
|
expect(ftoc(-100)).toEqual(-73.3);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('ctof', function() {
|
describe('ctof', function() {
|
||||||
xit('works', function() {
|
it('works', function() {
|
||||||
expect(ctof(0)).toEqual(32);
|
expect(ctof(0)).toEqual(32);
|
||||||
});
|
});
|
||||||
xit('rounds to 1 decimal', function() {
|
it('rounds to 1 decimal', function() {
|
||||||
expect(ctof(73.2)).toEqual(163.8);
|
expect(ctof(73.2)).toEqual(163.8);
|
||||||
});
|
});
|
||||||
xit('works with negatives', function() {
|
it('works with negatives', function() {
|
||||||
expect(ctof(-10)).toEqual(14);
|
expect(ctof(-10)).toEqual(14);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue