From ef4f55ae1a614d586249366c3535f888709eec44 Mon Sep 17 00:00:00 2001 From: rajroushan6714 Date: Thu, 24 Aug 2023 13:49:32 +0530 Subject: [PATCH] test 7 completed --- 07_tempConversion/tempConversion.js | 8 ++++++-- 07_tempConversion/tempConversion.spec.js | 10 +++++----- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/07_tempConversion/tempConversion.js b/07_tempConversion/tempConversion.js index 14153e0..46bdfa4 100644 --- a/07_tempConversion/tempConversion.js +++ b/07_tempConversion/tempConversion.js @@ -1,7 +1,11 @@ -const convertToCelsius = function() { +const convertToCelsius = function(F) { + let C = ((F - 32) * 5) / 9; + return Math.round(C * 10)/ 10; }; -const convertToFahrenheit = function() { +const convertToFahrenheit = function(C) { + let F = (C * 9) / 5 + 32; + return Math.round(F * 10) / 10; }; // Do not edit below this line diff --git a/07_tempConversion/tempConversion.spec.js b/07_tempConversion/tempConversion.spec.js index c4f9742..7d0cc93 100644 --- a/07_tempConversion/tempConversion.spec.js +++ b/07_tempConversion/tempConversion.spec.js @@ -4,22 +4,22 @@ describe('convertToCelsius', () => { test('works', () => { expect(convertToCelsius(32)).toEqual(0); }); - test.skip('rounds to 1 decimal', () => { + test('rounds to 1 decimal', () => { expect(convertToCelsius(100)).toEqual(37.8); }); - test.skip('works with negatives', () => { + test('works with negatives', () => { expect(convertToCelsius(-100)).toEqual(-73.3); }); }); describe('convertToFahrenheit', () => { - test.skip('works', () => { + test('works', () => { expect(convertToFahrenheit(0)).toEqual(32); }); - test.skip('rounds to 1 decimal', () => { + test('rounds to 1 decimal', () => { expect(convertToFahrenheit(73.2)).toEqual(163.8); }); - test.skip('works with negatives', () => { + test('works with negatives', () => { expect(convertToFahrenheit(-10)).toEqual(14); }); });